annotate src/pcre.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents ccbe7dae2d91
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2253
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 408
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := pcre
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 425
diff changeset
5 $(PKG)_IGNORE :=
5787
b62524b5a62f * src/pcre.mk: update to v8.45
John Donoghue <john.donoghue@ieee.org>
parents: 5314
diff changeset
6 $(PKG)_VERSION := 8.45
b62524b5a62f * src/pcre.mk: update to v8.45
John Donoghue <john.donoghue@ieee.org>
parents: 5314
diff changeset
7 $(PKG)_CHECKSUM := 8463cc88b737e2c3ce7f041922a6ff0c5abbed34
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_SUBDIR := pcre-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
9 $(PKG)_FILE := pcre-$($(PKG)_VERSION).tar.bz2
5965
40318020f9af * src/pcre.mk: dont use the ftp site for files
John Donoghue <john.donoghue@ieee.org>
parents: 5787
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/pcre/pcre/$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
11 $(PKG)_DEPS :=
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
5965
40318020f9af * src/pcre.mk: dont use the ftp site for files
John Donoghue <john.donoghue@ieee.org>
parents: 5787
diff changeset
14 $(WGET) -q -O- https://sourceforge.net/projects/pcre/files/pcre/ | \
40318020f9af * src/pcre.mk: dont use the ftp site for files
John Donoghue <john.donoghue@ieee.org>
parents: 5787
diff changeset
15 $(SED) -n 's,.*tr title="\([0-9][^"]*\)".*,\1,p' | \
40318020f9af * src/pcre.mk: dont use the ftp site for files
John Donoghue <john.donoghue@ieee.org>
parents: 5787
diff changeset
16 head -1
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
3088
79d8d9ae6d78 [MSVC] enable PCRE compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
20 $(if $(filter-out msvc,$(MXE_SYSTEM)),
79d8d9ae6d78 [MSVC] enable PCRE compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
21 $(SED) -i 's|__declspec(dllimport)||' '$(1)/pcre.h.in'
79d8d9ae6d78 [MSVC] enable PCRE compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
22 $(SED) -i 's|__declspec(dllimport)||' '$(1)/pcreposix.h')
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
24 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2676
diff changeset
25 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2861
diff changeset
26 --prefix='$(HOST_PREFIX)' \
2253
a7cd38ce7a20 package pcre: enable utf-16 support
Mark Brand <mabrand@mabrand.nl>
parents: 2241
diff changeset
27 --enable-pcre16 \
a7cd38ce7a20 package pcre: enable utf-16 support
Mark Brand <mabrand@mabrand.nl>
parents: 2241
diff changeset
28 --enable-utf \
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --enable-unicode-properties \
425
afd650c42ba3 disable C++ support for package pcre
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
30 --disable-cpp \
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --disable-pcregrep-libz \
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 --disable-pcregrep-libbz2 \
3088
79d8d9ae6d78 [MSVC] enable PCRE compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
33 --disable-pcretest-libreadline && $(CONFIGURE_POST_HOOK)
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2861
diff changeset
34 rm -f '$(HOST_PREFIX)'/share/man/man3/pcre16*.3
4308
411ddca4207f More dont install dependancy docs
John D
parents: 4166
diff changeset
35 $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
411ddca4207f More dont install dependancy docs
John D
parents: 4166
diff changeset
36 $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
411ddca4207f More dont install dependancy docs
John D
parents: 4166
diff changeset
37 if [ "$(ENABLE_DEP_DOCS)" == "no" ]; then \
6319
ccbe7dae2d91 * src/pcre.mk, src/pcre2.mk: remove doc files
John Donoghue <john.donoghue@ieee.org>
parents: 5965
diff changeset
38 rm -rf "$(3)$(HOST_PREFIX)/share/doc/pcre"; \
4308
411ddca4207f More dont install dependancy docs
John D
parents: 4166
diff changeset
39 rm -rf "$(3)$(HOST_PREFIX)/share/man"; \
411ddca4207f More dont install dependancy docs
John D
parents: 4166
diff changeset
40 fi
3216
11f8ec654cd4 Avoid copying or linking files that are the same when doing native build
John W. Eaton <jwe@octave.org>
parents: 3088
diff changeset
41 if [ $(MXE_NATIVE_BUILD) = no ]; then \
3306
2b4e9822f50b Undo changeset 2ccb71581ee9, 70873001835f, 724c7c2201aa and create BUILD_TOOLS_PREFIX/bin
John Donoghue <john.donoghue@ieee.org>
parents: 3301
diff changeset
42 $(INSTALL) -d '$(3)$(BUILD_TOOLS_PREFIX)/bin'; \
2b4e9822f50b Undo changeset 2ccb71581ee9, 70873001835f, 724c7c2201aa and create BUILD_TOOLS_PREFIX/bin
John Donoghue <john.donoghue@ieee.org>
parents: 3301
diff changeset
43 $(INSTALL) -m755 '$(3)$(HOST_BINDIR)/pcre-config' '$(3)$(BUILD_TOOLS_PREFIX)/bin/pcre-config'; \
3216
11f8ec654cd4 Avoid copying or linking files that are the same when doing native build
John W. Eaton <jwe@octave.org>
parents: 3088
diff changeset
44 fi
245
05a1787838ba new package: pcre
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
45 endef