annotate src/pcre2.mk @ 4735:4cea16af20b4

qt5: update to v5.11.0, add support pcre2 * src/qtbase.mk: update version, checksum * src/qtimageformats.mk: update checksum * src/qtisvg.mk: update checksum * src/qttools.mk: update checksum * src/qtbase-1-fixes.patch, src/qttools-1.patch: update patch from mxe.cc * src/pcre2.mk: new file * index.html: add pcre2 * src/sqlite.mk: enable column metadata
author John Donoghue
date Fri, 22 Jun 2018 08:28:05 -0400
parents
children ce1225ca57ad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4735
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
3
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
4 PKG := pcre2
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
5 $(PKG)_IGNORE :=
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
6 $(PKG)_VERSION := 10.30
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
7 $(PKG)_CHECKSUM := 8296dda3476bbb4c90048ff47e3a71f3b2749566
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
8 $(PKG)_SUBDIR := pcre2-$($(PKG)_VERSION)
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
9 $(PKG)_FILE := pcre2-$($(PKG)_VERSION).tar.bz2
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/pcre/pcre2/$($(PKG)_VERSION)/$($(PKG)_FILE)
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
11 $(PKG)_DEPS :=
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
12
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
13 define $(PKG)_UPDATE
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
14 $(WGET) -q -O- 'http://sourceforge.net/projects/pcre/files/pcre2/' | \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
15 $(SED) -n 's,.*tr title="\([0-9][^"]*\)".*,\1,p' | \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
16 head -1
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
17 endef
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
18
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
19 define $(PKG)_BUILD
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
20 cd '$(1)' && ./configure \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
23 --prefix='$(HOST_PREFIX)' \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
24 --enable-pcre2-16 \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
25 --enable-utf \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
26 --enable-unicode-properties \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
27 --enable-cpp \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
28 --disable-pcregrep-libz \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
29 --disable-pcregrep-libbz2 \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
30 --disable-pcretest-libreadline && $(CONFIGURE_POST_HOOK)
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
31 rm -f '$(HOST_PREFIX)'/share/man/man3/pcre2-16*.3
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
32 $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
33 $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
34 if [ "$(ENABLE_DEP_DOCS)" == "no" ]; then \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
35 rm -rf "$(3)$(HOST_PREFIX)/share/doc/pcre2/html"; \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
36 rm -rf "$(3)$(HOST_PREFIX)/share/man"; \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
37 fi
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
38 if [ $(MXE_NATIVE_BUILD) = no ]; then \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
39 $(INSTALL) -d '$(3)$(BUILD_TOOLS_PREFIX)/bin'; \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
40 $(INSTALL) -m755 '$(3)$(HOST_BINDIR)/pcre2-config' '$(3)$(BUILD_TOOLS_PREFIX)/bin/pcre2-config'; \
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
41 fi
4cea16af20b4 qt5: update to v5.11.0, add support pcre2
John Donoghue
parents:
diff changeset
42 endef