summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Bermond2017-08-07 12:51:30 -0300
committerDaniel Bermond2017-08-07 12:51:30 -0300
commited895d75a312e6ef566163bc0db7469563a631b4 (patch)
tree999847ed57bc911271d2535cded5bd6777fbbd07
parent0a57e5699526af85088586d94f1947ae95484b68 (diff)
downloadaur-ed895d75a312e6ef566163bc0db7469563a631b4.tar.gz
Fixed installation of library
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ac874dcd8d7d..41e500447a6e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Fri Jun 30 14:48:01 UTC 2017
+# Mon Aug 7 15:51:23 UTC 2017
pkgbase = libmysofa-git
pkgdesc = C library to read HRTFs if they are stored in the AES69-2015 SOFA format (git version)
- pkgver = 0.5.r1.gb915602
+ pkgver = 0.6.r3.g00c6e62
pkgrel = 1
url = https://hoene.github.io/libmysofa/
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index ebd4342b53b6..38a6dd15b9ec 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Daniel Bermond < yahoo-com: danielbermond >
pkgname=libmysofa-git
-pkgver=0.5.r1.gb915602
+pkgver=0.6.r3.g00c6e62
pkgrel=1
pkgdesc='C library to read HRTFs if they are stored in the AES69-2015 SOFA format (git version)'
arch=('i686' 'x86_64')
@@ -41,7 +41,11 @@ package() {
# library
cd "${srcdir}/${pkgname}/build/src"
- install -D -m755 libmysofa.so "${pkgdir}/usr/lib/libmysofa.so"
+ mkdir -p "${pkgdir}/usr/lib"
+ for _file in libmysofa.so*
+ do
+ cp -a "$_file" "${pkgdir}/usr/lib"
+ done
# license
cd "${srcdir}/${pkgname}"