summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Heywood2016-03-01 22:15:12 -0600
committerCharles Heywood2016-03-01 22:15:12 -0600
commit3db1136495bac442a3f39c918e301fcffb434c51 (patch)
treefb44fdb88681a3476d180d3eda01ac96ef8feb2f
parent7a7cc005fe5c96518cd2273118720aa20c9b290c (diff)
downloadaur-3db1136495bac442a3f39c918e301fcffb434c51.tar.gz
Fix prefix
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 080b5c427cfe..5a278875fa6c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = lua-ossl-git
pkgdesc = Most comprehensive OpenSSL module in the Lua universe.
pkgver = rel.20140328.r185.gdac0e48
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/wahern/luaossl
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 1c0f934213e5..247f899030fb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Charles Heywood <charles@hashbang.sh>
pkgname=lua-ossl-git
pkgver=rel.20140328.r185.gdac0e48
-pkgrel=2
+pkgrel=3
pkgdesc="Most comprehensive OpenSSL module in the Lua universe."
arch=('i686' 'x86_64')
url="https://github.com/wahern/luaossl"
@@ -27,7 +27,7 @@ build() {
package() {
cd "$srcdir/luaossl"
for version in ${_luaversions[@]}; do
- make DESTDIR="$pkgdir/" install${version}
+ make prefix="$pkgdir/usr" install${version}
done
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}