summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorViktor Drobot2019-12-31 02:45:55 +0300
committerViktor Drobot2019-12-31 02:45:55 +0300
commit06c80d09f8150f121bab0d50514130b7c53ae385 (patch)
tree50738ae3e6b1f69261e0a549340191cf4e0e45df
parent4d84b0041371b3c7c6abd8a0b0028d2abb259707 (diff)
downloadaur-06c80d09f8150f121bab0d50514130b7c53ae385.tar.gz
Improved build
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 26685d1732ba..70bf1f04bc75 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = suscan-git
pkgdesc = SUScan is a graphical signal analysis tool
- pkgver = r479.9250ea0
+ pkgver = r480.29625cb
pkgrel = 1
url = https://github.com/BatchDrake/suscan
arch = any
@@ -15,7 +15,6 @@ pkgbase = suscan-git
optdepends = libvolk
provides = suscan
conflicts = suscan
- options = !buildflags
source = suscan-git::git+https://github.com/BatchDrake/suscan.git
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index ae1a7433cc0e..7ae01915679b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Julio Diez <juliosddr@gmail.com>
pkgname=suscan-git
-pkgver=r479.9250ea0
+pkgver=r480.29625cb
pkgrel=1
pkgdesc="SUScan is a graphical signal analysis tool"
arch=("any")
@@ -15,7 +15,6 @@ provides=("suscan")
conflicts=("suscan")
source=($pkgname::git+https://github.com/BatchDrake/suscan.git)
md5sums=('SKIP')
-options=('!buildflags')
pkgver() {
cd "$pkgname"
@@ -28,7 +27,8 @@ build() {
mkdir build
cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+ export LDFLAGS=""
+ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_RPATH=ON -DCMAKE_SKIP_INSTALL_RPATH=ON ..
make
}