diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-24 20:10:58 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-24 20:10:58 +0000 |
commit | 77431f1703c828155ff2520c9b996b9128ebff71 (patch) | |
tree | b03ed4608902aad69b3be639e7a08fd1eb66be61 /main/rt4 | |
parent | 00239ecb29ca6b7113962df3d28340dff2714b78 (diff) | |
download | aports-77431f1703c828155ff2520c9b996b9128ebff71.tar.bz2 aports-77431f1703c828155ff2520c9b996b9128ebff71.tar.xz |
main/rt4: do not install anything in /usr/local
Diffstat (limited to 'main/rt4')
-rw-r--r-- | main/rt4/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/rt4/APKBUILD b/main/rt4/APKBUILD index d2e3343f4d..00a439b529 100644 --- a/main/rt4/APKBUILD +++ b/main/rt4/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=rt4 pkgver=4.0.5 -pkgrel=0 +pkgrel=1 pkgdesc="Request Tracker - issue and bug tracker" pkgusers="rt4" pkggroups="rt4" @@ -134,7 +134,8 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 # delete the droid fonts as we get them from ttf-droid - rm -rf "$pkgdir"/usr/share/rt4/fonts/ + rm -rf "$pkgdir"/usr/share/rt4/fonts/ \ + "$pkgdir"/usr/local } |