summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomáš Mládek2015-09-25 07:49:47 +0200
committerTomáš Mládek2015-09-25 07:49:47 +0200
commit4d25734e08221e7ce60b56e8523fe809b43916b7 (patch)
treea2fa7cbc0514996b18907c4685979e30018a4a58
parent1887208b0f813d0b1d982b52bcea69b9f183fb03 (diff)
downloadaur-4d25734e08221e7ce60b56e8523fe809b43916b7.tar.gz
fix /usr/sbin conflict (ty andy)
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d5a3db60e313..7dc26cc6a3a2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = tmsu
pkgdesc = A tool for tagging your files and accessing them through a virtual filesystem.
pkgver = 0.5.2
- pkgrel = 2
+ pkgrel = 3
url = http://tmsu.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index a33f0e3222db..826510da8c5b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,10 +1,11 @@
# This is the PKGBUILD for TMSU
# Maintainer: Tomáš Mládek <tmladek{at}inventati{dt}org>
+# Contributor: Andy Weidenbaum <archbaum@gmail.com>
pkgname=tmsu
pkgver=0.5.2
-pkgrel=2
+pkgrel=3
pkgdesc="A tool for tagging your files and accessing them through a virtual filesystem."
arch=('i686' 'x86_64')
url="http://tmsu.org/"
@@ -34,6 +35,9 @@ package(){
"$pkgdir/usr/share/zsh/site-functions"
cd "$srcdir/TMSU-$pkgver"
- sed -ie "s%/usr%$pkgdir/usr%g" Makefile
- make install
+ make INSTALL_DIR="$pkgdir/usr/bin" \
+ MOUNT_INSTALL_DIR="$pkgdir/usr/bin" \
+ MAN_INSTALL_DIR="$pkgdir/usr/share/man/man1" \
+ ZSH_COMP_INSTALL_DIR="$pkgdir/usr/share/zsh/site-functions" \
+ install
}