30f79e5cb2
Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools.
24 lines
542 B
Makefile
24 lines
542 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/10/08 22:36:20 leot Exp $
|
|
|
|
DISTNAME= gumbo-parser-0.10.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=google/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/google/gumbo-parser/
|
|
COMMENT= HTML5 parsing library in pure C99
|
|
LICENSE= apache-2.0
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= aclocal autoconf automake
|
|
|
|
PKGCONFIG_OVERRIDE= gumbo.pc.in
|
|
|
|
USE_LANGUAGES= c99 c++
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ./autogen.sh
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|