summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichel Zou2017-12-03 11:33:56 +0100
committerMichel Zou2017-12-03 11:33:56 +0100
commit0c8ed6ffeacc64d6ed8fd3803b6e48b9d7cc50d2 (patch)
tree275b997956901b22c549fb6ad147db0797335035
parent6916c8d22a8b7ac73eb12b5fd65bbe3c4a7359c6 (diff)
downloadaur-0c8ed6ffeacc64d6ed8fd3803b6e48b9d7cc50d2.tar.gz
4.64
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD8
2 files changed, 7 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 57a80ddf8d7f..3d75df573354 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Tue Apr 5 18:13:22 UTC 2016
+# Sun Dec 3 10:33:56 UTC 2017
pkgbase = mingw-w64-glpk
pkgdesc = GNU Linear Programming Kit : solve LP, MIP and other problems. (mingw-w64)
- pkgver = 4.60
+ pkgver = 4.64
pkgrel = 1
url = http://www.gnu.org/software/glpk/glpk.html
arch = any
@@ -12,8 +12,8 @@ pkgbase = mingw-w64-glpk
options = !buildflags
options = !strip
options = staticlibs
- source = http://ftp.gnu.org/gnu/glpk/glpk-4.60.tar.gz
- sha1sums = 4e55a3d2aa38b19c5bdd8a195738dbaf44e91e90
+ source = http://ftp.gnu.org/gnu/glpk/glpk-4.64.tar.gz
+ sha256sums = 539267f40ea3e09c3b76a31c8747f559e8a097ec0cda8f1a3778eec3e4c3cc24
pkgname = mingw-w64-glpk
diff --git a/PKGBUILD b/PKGBUILD
index 02cec38bad02..1c8e7ae7cd79 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mingw-w64-glpk
-pkgver=4.60
+pkgver=4.64
pkgrel=1
pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems. (mingw-w64)"
arch=('any')
@@ -10,21 +10,19 @@ depends=('mingw-w64-crt')
makedepends=('mingw-w64-gcc')
options=('!buildflags' '!strip' 'staticlibs')
source=(http://ftp.gnu.org/gnu/glpk/glpk-${pkgver}.tar.gz)
-sha1sums=('4e55a3d2aa38b19c5bdd8a195738dbaf44e91e90')
+sha256sums=('539267f40ea3e09c3b76a31c8747f559e8a097ec0cda8f1a3778eec3e4c3cc24')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
prepare () {
cd "${srcdir}/glpk-${pkgver}"
- sed -i "s|-version-info|-no-undefined -version-info|g" src/Makefile.am
- autoreconf -vfi
}
build() {
cd "${srcdir}/glpk-${pkgver}"
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
- ${_arch}-configure
+ CPPFLAGS="-D__WOE__" ${_arch}-configure
make
popd
done