summaryrefslogtreecommitdiffstats
path: root/src/pcre2.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2017-06-02 13:51:42 (GMT)
committerMark Brand <mabrand@mabrand.nl>2017-06-02 14:02:03 (GMT)
commitaea39fccfba62a796ec562121347c78f2436bca9 (patch)
tree48329f05f8344db77fa318a786a06ffa74965033 /src/pcre2.mk
parent5e9806e0894e8565ed7c3f9b73c03a2e37814f45 (diff)
downloadmxe-aea39fccfba62a796ec562121347c78f2436bca9.zip
mxe-aea39fccfba62a796ec562121347c78f2436bca9.tar.gz
mxe-aea39fccfba62a796ec562121347c78f2436bca9.tar.bz2
new package: pcre2
Diffstat (limited to 'src/pcre2.mk')
-rw-r--r--src/pcre2.mk42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/pcre2.mk b/src/pcre2.mk
new file mode 100644
index 0000000..b0f6602
--- /dev/null
+++ b/src/pcre2.mk
@@ -0,0 +1,42 @@
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+PKG := pcre2
+$(PKG)_WEBSITE := http://www.pcre.org/
+$(PKG)_DESCR := PCRE2
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 10.23
+$(PKG)_CHECKSUM := dfc79b918771f02d33968bd34a749ad7487fa1014aeb787fad29dd392b78c56e
+$(PKG)_SUBDIR := pcre2-$($(PKG)_VERSION)
+$(PKG)_FILE := pcre2-$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL := https://ftp.pcre.org/pub/pcre/$($(PKG)_FILE)
+$(PKG)_URL_2 := https://$(SOURCEFORGE_MIRROR)/project/pcre/pcre2/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'https://ftp.pcre.org/pub/pcre/' | \
+ $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD_SHARED
+ cd '$(1)' && ./configure \
+ $(MXE_CONFIGURE_OPTS) \
+ --enable-pcre2-16 \
+ --enable-utf \
+ --enable-unicode-properties \
+ --enable-cpp \
+ --disable-pcre2grep-libz \
+ --disable-pcre2grep-libbz2 \
+ --disable-pcre2test-libreadline
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_PROGRAMS) dist_html_DATA= dist_doc_DATA=
+ rm -f '$(PREFIX)/$(TARGET)'/share/man/man1/pcre*.1
+ rm -f '$(PREFIX)/$(TARGET)'/share/man/man3/pcre*.3
+ ln -sf '$(PREFIX)/$(TARGET)/bin/pcre2-config' '$(PREFIX)/bin/$(TARGET)-pcre2-config'
+endef
+
+define $(PKG)_BUILD
+ $(SED) -i 's,__declspec(dllimport),,' '$(1)/src/pcre2.h.in'
+ $(SED) -i 's,__declspec(dllimport),,' '$(1)/src/pcre2posix.h'
+ $(SED) -i 's,__declspec(dllimport),,' '$(1)/src/pcre2.h.generic'
+ $($(PKG)_BUILD_SHARED)
+endef