summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandar Trifunovic2021-03-08 09:53:14 +0100
committerAleksandar Trifunovic2021-03-08 09:53:14 +0100
commitce881f5cd28b217e659bc2932d30baa8ba032081 (patch)
treeb246bbe2cb592321a024095755454aab692e912a
parent879bed8fe72361be2962b0b0a75ec04c943e9e0b (diff)
downloadaur-ce881f5cd28b217e659bc2932d30baa8ba032081.tar.gz
makeflags fix
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7ebafbce4a46..d84dbb42d4f7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = or-tools
pkgdesc = Google's Operations Research tools.
pkgver = 8.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/google/or-tools
arch = x86_64
license = Apache
diff --git a/PKGBUILD b/PKGBUILD
index 284b2beaa31c..da1bce276bf8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=or-tools
pkgver=8.2
-pkgrel=1
+pkgrel=2
pkgdesc="Google's Operations Research tools."
arch=('x86_64')
url="https://github.com/google/or-tools"
@@ -30,8 +30,8 @@ prepare() {
}
build() {
- cd "$pkgname-$pkgver"
- cmake --build build -- "${MAKEFLAGS}"
+ cd "$pkgname-$pkgver/build"
+ make
}
# https://github.com/google/or-tools/issues/2395