comparison src/glpk.mk @ 4959:506a61f959e4

Update ghostscript to 9.26. * src/ghostscript.mk: Update version, checksum and dependencies. Update build rule. * src/ghostscript-1-fixes.patch: Add new file. * src/ghostscrip-mingw-[i686,x86_64]-[arch.h,gconfig_.h,makefile]: Remove files. * src/build-automake.mk: Update to version 1.16.1. * src/build-automake-1-perl-5.patch: Remove file. * src/libidn.mk: Update to version 1.35. * src/glpk.mk: Skip autoconf steps.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 16 Feb 2019 16:03:02 +0100
parents 060d6cafa0a6
children 3df44260321f
comparison
equal deleted inserted replaced
4958:8b4d4e06075d 4959:506a61f959e4
15 $(SED) -n 's,.*<a href="glpk-\([0-9][^"]*\)\.tar.*,\1,p' | \ 15 $(SED) -n 's,.*<a href="glpk-\([0-9][^"]*\)\.tar.*,\1,p' | \
16 head -1 16 head -1
17 endef 17 endef
18 18
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD
20 cd '$(1)' && aclocal && libtoolize && autoreconf
21 mkdir '$(1)/.build' 20 mkdir '$(1)/.build'
22 cd '$(1)/.build' && '$(1)/configure' \ 21 cd '$(1)/.build' && '$(1)/configure' \
23 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ 22 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
24 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 23 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
25 $(ENABLE_SHARED_OR_STATIC) \ 24 $(ENABLE_SHARED_OR_STATIC) \
26 --with-gmp \ 25 --with-gmp \
27 --prefix='$(HOST_PREFIX)' && $(CONFIGURE_POST_HOOK) 26 --prefix='$(HOST_PREFIX)' && $(CONFIGURE_POST_HOOK)
28 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' 27 $(MAKE) -C '$(1)/.build' -j '$(JOBS)'
29 $(MAKE) -C '$(1)/.build' -j 1 install DESTDIR='$(3)' 28 $(MAKE) -C '$(1)/.build' -j 1 install DESTDIR='$(3)'
30 endef 29 endef