annotate src/gsl.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 6f8def83bcf7
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: 2329
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.
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := gsl
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
6015
6f8def83bcf7 * src/gsl.mk: update to v2.7.1
John Donoghue <john.donoghue@ieee.org>
parents: 5799
diff changeset
6 $(PKG)_VERSION := 2.7.1
6f8def83bcf7 * src/gsl.mk: update to v2.7.1
John Donoghue <john.donoghue@ieee.org>
parents: 5799
diff changeset
7 $(PKG)_CHECKSUM := 549e1105cd1198537be9707257161531e109bd94
838
d11f82bd2ef5 small corrections for package gsl (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 837
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
d11f82bd2ef5 small corrections for package gsl (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 837
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
d11f82bd2ef5 small corrections for package gsl (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 837
diff changeset
10 $(PKG)_URL := http://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
11 $(PKG)_DEPS :=
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4249
diff changeset
14 $(WGET) -q -O- 'https://ftp.gnu.org/gnu/$(PKG)/' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4249
diff changeset
15 $(SED) -n 's,.*<a href="gsl-\([0-9.]\+\).tar.gz".*,\1,p' | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4249
diff changeset
16 $(SORT) -V | \
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4249
diff changeset
17 tail -1
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
3154
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
20 ifeq ($(MXE_SYSTEM),msvc)
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
21 $(PKG)_EXTRA_CONFIGURE_OPTIONS := \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
22 ac_cv_func_memcpy=yes \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
23 ac_cv_c_inline=no
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
24 endif
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
25
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 define $(PKG)_BUILD
3154
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
27 if [ $(MXE_SYSTEM) = msvc ]; then \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
28 cd '$(1)' && autoreconf -i -f -v; \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
29 fi
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
31 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3154
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
32 --enable-maintainer-mode \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
33 --prefix='$(HOST_PREFIX)' \
3154
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
34 $(ENABLE_SHARED_OR_STATIC) \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
35 $($(PKG)_EXTRA_CONFIGURE_OPTIONS) \
6665f8a98e70 [MSVC] enable GSL compilation and bump version to 1.15
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
36 && $(CONFIGURE_POST_HOOK)
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 $(MAKE) -C '$(1)' -j '$(JOBS)'
5416
9cc776f11af7 * src/gsl.mk: dont install docs/bins
John Donoghue <john.donoghue@ieee.org>
parents: 5156
diff changeset
38 $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_DOCS) $(MXE_DISABLE_PROGS) DESTDIR='$(3)'
837
ff7c924750f8 new package: gsl (by Michel Boaventura)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
39 endef