annotate src/sundials-ida.mk @ 4567:f89c67818a6b

zeromq: update to v4.2.2 * src/zeromq.mk: update version/checksum, implement PKG_UPDATE
author John D
date Thu, 30 Nov 2017 13:41:24 -0500
parents f84b27a7e47d
children 0cbc51911dd0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4375
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
1 # This file is part of MXE.
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
2 # See index.html for further information.
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
3
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
4 PKG := sundials-ida
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
5 $(PKG)_IGNORE :=
4534
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
6 $(PKG)_VERSION := 2.7.0
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
7 $(PKG)_CHECKSUM := 3559c375ce9f875542e4a39978908f91792e6d57
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
8 $(PKG)_SUBDIR := sundials-$($(PKG)_VERSION)
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
9 $(PKG)_FILE := sundials-$($(PKG)_VERSION).tar.gz
4375
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
10 $(PKG)_URL := https://computation.llnl.gov/projects/sundials/download/$($(PKG)_FILE)
4462
8b731cde3aaa sundials-ida: build against the SuiteSparse KLU library
Mike Miller <mtmiller@octave.org>
parents: 4375
diff changeset
11 $(PKG)_DEPS := lapack libgomp suitesparse
4375
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
12
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
13 define $(PKG)_UPDATE
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
15 echo $($(PKG)_VERSION)
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
16 endef
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
17
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
18 define $(PKG)_BUILD
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
19 mkdir '$(1).build'
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
20 cd '$(1).build' && cmake \
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
21 -DEXAMPLES_ENABLE=OFF \
4462
8b731cde3aaa sundials-ida: build against the SuiteSparse KLU library
Mike Miller <mtmiller@octave.org>
parents: 4375
diff changeset
22 -DKLU_ENABLE=ON \
8b731cde3aaa sundials-ida: build against the SuiteSparse KLU library
Mike Miller <mtmiller@octave.org>
parents: 4375
diff changeset
23 -DKLU_INCLUDE_DIR=$(HOST_INCDIR)/suitesparse \
8b731cde3aaa sundials-ida: build against the SuiteSparse KLU library
Mike Miller <mtmiller@octave.org>
parents: 4375
diff changeset
24 -DKLU_LIBRARY_DIR=$(HOST_LIBDIR) \
8b731cde3aaa sundials-ida: build against the SuiteSparse KLU library
Mike Miller <mtmiller@octave.org>
parents: 4375
diff changeset
25 -DSUITESPARSECONFIG_LIBRARY=$(HOST_LIBDIR)/libsuitesparseconfig.dll.a \
4375
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
26 -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
4534
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
27 -DBUILD_ARKODE=OFF \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
28 -DBUILD_CVODE=OFF \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
29 -DBUILD_CVODES=OFF \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
30 -DBUILD_IDA=ON \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
31 -DBUILD_IDAS=OFF \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
32 -DBUILD_KINSOL=OFF \
f84b27a7e47d sundials-ida: build from archived sundials package
John Donoghue <john.donoghue@ieee.org>
parents: 4462
diff changeset
33 -DBUILD_CPODES=OFF \
4375
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
34 '$(1)'
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
35 $(MAKE) -C '$(1).build' -j '$(JOBS)' install DESTDIR='$(3)' VERBOSE=1
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
36
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
37 if [ $(MXE_SYSTEM) = mingw ]; then \
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
38 echo "Install dlls"; \
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
39 $(INSTALL) -d '$(3)$(HOST_BINDIR)'; \
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
40 mv '$(3)$(HOST_LIBDIR)/'libsundials*.dll '$(3)$(HOST_BINDIR)/'; \
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
41 fi
7208df703412 sundials-ida: add new package
John D
parents:
diff changeset
42 endef