diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-02-27 18:04:14 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-02-27 18:04:14 (GMT) |
commit | 8cc923257e4a5e745e329f9b9b2972012111422d (patch) | |
tree | d0f73e01bac317c35099ea103e5ecfa10ee81e89 /src | |
parent | a62ba994e988ca8387de54ebb05e25a585c2fffc (diff) | |
download | mxe-8cc923257e4a5e745e329f9b9b2972012111422d.zip mxe-8cc923257e4a5e745e329f9b9b2972012111422d.tar.gz mxe-8cc923257e4a5e745e329f9b9b2972012111422d.tar.bz2 |
new package: pcre
Diffstat (limited to 'src')
-rw-r--r-- | src/pcre.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/pcre.mk b/src/pcre.mk new file mode 100644 index 0000000..a0ee31d --- /dev/null +++ b/src/pcre.mk @@ -0,0 +1,29 @@ +# PCRE +# http://www.pcre.org/ + +PKG := pcre +$(PKG)_VERSION := 7.8 +$(PKG)_SUBDIR := pcre-$($(PKG)_VERSION) +$(PKG)_FILE := pcre-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/pcre/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + wget -q -O- 'http://sourceforge.net/project/showfiles.php?group_id=10194&package_id=9960' | \ + grep 'pcre-' | \ + $(SED) -n 's,.*pcre-\([0-9][^>]*\)\.tar.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --enable-utf8 \ + --enable-unicode-properties \ + --disable-pcregrep-libz \ + --disable-pcregrep-libbz2 \ + --disable-pcretest-libreadline + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= +endef |