summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichel Zou2019-02-04 21:47:28 +0100
committerMichel Zou2019-02-04 21:47:28 +0100
commitc048677e42f6b5a93e51b3b1dba27a59b82d586d (patch)
tree188954720182d2240472a69cb1f4b9604f50d6c5
parent9271dbeb3a367dbfd52d38a73914b9988bf55c4c (diff)
downloadaur-c048677e42f6b5a93e51b3b1dba27a59b82d586d.tar.gz
1.4.3
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4a75353ab83f..cb93edea987b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = mingw-w64-coin-or-bcp
pkgdesc = COIN-OR parallel branch-cut-price algorithms for mixed-integer linear programs (mingw-w64)
- pkgver = 1.4.0
+ pkgver = 1.4.3
pkgrel = 1
url = https://projects.coin-or.org/Bcp
arch = any
@@ -12,8 +12,8 @@ pkgbase = mingw-w64-coin-or-bcp
options = staticlibs
options = !buildflags
options = !strip
- source = http://www.coin-or.org/download/source/Bcp/Bcp-1.4.0.tgz
- sha1sums = addf63bda07f85ea6a6b16ff32088afd08a3b56e
+ source = http://www.coin-or.org/download/source/Bcp/Bcp-1.4.3.tgz
+ sha256sums = 5e7a2871033f9d5e8dda69b5fc19ff37853f24f4bdd42fb0b97f904e3a7c856e
pkgname = mingw-w64-coin-or-bcp
diff --git a/PKGBUILD b/PKGBUILD
index f1a710d03606..db377217377d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=mingw-w64-coin-or-bcp
-pkgver=1.4.0
+pkgver=1.4.3
pkgrel=1
pkgdesc="COIN-OR parallel branch-cut-price algorithms for mixed-integer linear programs (mingw-w64)"
arch=('any')
@@ -10,7 +10,7 @@ depends=('mingw-w64-coin-or-cgl' 'mingw-w64-coin-or-clp')
makedepends=('mingw-w64-configure')
options=('staticlibs' '!buildflags' '!strip')
source=("http://www.coin-or.org/download/source/Bcp/Bcp-${pkgver}.tgz")
-sha1sums=('addf63bda07f85ea6a6b16ff32088afd08a3b56e')
+sha256sums=('5e7a2871033f9d5e8dda69b5fc19ff37853f24f4bdd42fb0b97f904e3a7c856e')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
@@ -19,7 +19,7 @@ build() {
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
COIN_SKIP_PROJECTS="Sample" \
- ${_arch}-configure \
+ ${_arch}-configure --disable-shared \
--with-osi-lib="$(${_arch}-pkg-config --libs osi)" \
--with-osi-incdir="/usr/${_arch}/include/coin/" \
--with-clp-lib="$(${_arch}-pkg-config --libs clp)" \
@@ -29,7 +29,8 @@ build() {
--with-vol-lib="$(${_arch}-pkg-config --libs vol)" \
--with-vol-incdir="/usr/${_arch}/include/coin/" \
--with-coinutils-lib="$(${_arch}-pkg-config --libs coinutils)" \
- --with-coinutils-incdir="/usr/${_arch}/include/coin/" -C
+ --with-coinutils-incdir="/usr/${_arch}/include/coin/" \
+ ..
make
popd
done