summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuldeep Singh Dhaka2016-12-24 18:19:55 +0530
committerKuldeep Singh Dhaka2016-12-24 18:20:44 +0530
commit4ab08b9445332688b763a9296db2fd6bdec25c5c (patch)
treee77fd380e12fcdd4eb7cf19e6bee5a7ae1c7c84a
parentdddf074a6a023b1c7a2f921b1056f736323b9dc2 (diff)
downloadaur-4ab08b9445332688b763a9296db2fd6bdec25c5c.tar.gz
Fix: "/usr/lib64 exists in filesystem" Force CMAKE_INSTALL_LIBDIR='lib'
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 14edfd4d1860..d14cab822450 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Wed Dec 21 11:46:03 UTC 2016
+# Sat Dec 24 12:50:33 UTC 2016
pkgbase = libbox0-git
pkgdesc = C library for communicating with Box0 implementations
- pkgver = 62.6355ffa
+ pkgver = 69.aa871fc
pkgrel = 1
url = https://www.madresistor.org/box0
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 0ea0ee4564f2..df8fa29b6429 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=libbox0-git
_pkgname=libbox0
-pkgver=62.6355ffa
+pkgver=69.aa871fc
pkgrel=1
pkgdesc="C library for communicating with Box0 implementations"
arch=('i686' 'x86_64')
@@ -33,7 +33,11 @@ prepare() {
build() {
cd "$srcdir/$_pkgname/build"
# We are not building demo examples as they will not be installed
- cmake -DCMAKE_INSTALL_PREFIX='/usr' -DBUILD_DEMO=NO -DBUILD_SHARED_LIBS='TRUE' ..
+ cmake \
+ -DCMAKE_INSTALL_PREFIX='/usr' \
+ -DCMAKE_INSTALL_LIBDIR='lib' \
+ -DBUILD_DEMO=NO \
+ -DBUILD_SHARED_LIBS='TRUE' ..
make
}