annotate src/isl.mk @ 6113:24e29dcb2e64

Qt5: Update to version 5.15.3. * src/qtbase.mk: Update version and checksum. * src/qtbase-2-gcc11.patch: Remove hunks from patch that have been applied upstream. * src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslationse.mk: Update checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 05 Mar 2022 10:59:53 +0100
parents 14180027d205
children 9971207fe70e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := isl
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6086
14180027d205 isl: Update to version 0.24.
Markus Mützel <markus.muetzel@gmx.de>
parents: 6083
diff changeset
6 $(PKG)_VERSION := 0.24
14180027d205 isl: Update to version 0.24.
Markus Mützel <markus.muetzel@gmx.de>
parents: 6083
diff changeset
7 $(PKG)_CHECKSUM := b0c46cc1c4fb1658def8d3c4c702a01049ea795e
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
10 $(PKG)_URL := https://libisl.sourceforge.io/$($(PKG)_FILE)
3502
d667a65b0f2f update gcc dependencies
John W. Eaton <jwe@octave.org>
parents: 3496
diff changeset
11 $(PKG)_DEPS := build-gcc gmp
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4467
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3934
diff changeset
13 $(PKG)_EXTRA_MAKE_FLAGS := LDFLAGS='-no-undefined'
b7d6a53fa46c gcc: update to 7.1 with tools
John D
parents: 3934
diff changeset
14
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 # stick to tested versions from gcc
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 define $(PKG)_UPDATE
5920
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
17 $(WGET) -q -O- 'https://repo.or.cz/isl.git/refs' | \
62cf840a71a5 isl: use git repo instead of unresponsive website
John Donoghue <john.donoghue@ieee.org>
parents: 5325
diff changeset
18 $(SED) -n 's,.*>tags/isl-\([0-9][^<]*\).*,\1,p' | \
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 $(SORT) -V |
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 tail -1
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 endef
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 define $(PKG)_BUILD
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
24 cd '$(1)' && mkdir '$(1)/.build'
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
25 cd '$(1)/.build' && '$(1)/configure' \
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 $(ENABLE_SHARED_OR_STATIC) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 --prefix='$(HOST_PREFIX)' \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 --with-gmp-prefix='$(HOST_PREFIX)'
6083
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
30 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS)
49f199fba615 isl: Switch to official mirror.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5920
diff changeset
31 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS) install
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 endef