gumbo: add new package and test program

This commit is contained in:
David Yip 2017-08-06 22:05:57 -05:00
parent 6206008ece
commit afe5b06584
2 changed files with 48 additions and 0 deletions

13
src/gumbo-test.c Normal file
View File

@ -0,0 +1,13 @@
/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <gumbo.h>
int main()
{
GumboOutput *output = gumbo_parse("<blink>Hello world!</blink>");
gumbo_destroy_output(&kGumboDefaultOptions, output);
return 0;
}

35
src/gumbo.mk Normal file
View File

@ -0,0 +1,35 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gumbo
$(PKG)_WEBSITE := https://github.com/google/gumbo-parser
$(PKG)_DESCR := Gumbo, an HTML5 parsing library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.10.1
$(PKG)_CHECKSUM := 28463053d44a5dfbc4b77bcf49c8cee119338ffa636cc17fc3378421d714efad
$(PKG)_GH_CONF := google/gumbo-parser, v
$(PKG)_DEPS := gcc
define $(PKG)_BUILD
# build and install the library
cd $(SOURCE_DIR) && ./autogen.sh
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure $(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install \
bin_PROGRAMS= \
sbin_PROGRAMS= \
noinst_PROGRAMS=
# create pkg-config files
$(INSTALL) -d '$(PREFIX)/$(TARGET)/lib/pkgconfig'
(echo 'Name: $(PKG)'; \
echo 'Version: $($(PKG)_VERSION)'; \
echo 'Description: Gumbo, an HTML5 parsing library'; \
echo 'Libs: -lgumbo';) \
> '$(PREFIX)/$(TARGET)/lib/pkgconfig/$(PKG).pc'
# compile test
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
`'$(TARGET)-pkg-config' $(PKG) --cflags --libs`
endef