diff options
author | root <root@rshg054.dnsready.net> | 2013-07-11 01:38:47 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-11 01:38:47 -0700 |
commit | 2e85ee969c4be5762301fc1447315f132aca1fc8 (patch) | |
tree | 45ce2476a7dec9372c4d13a039237544ff6898d1 /community/libfm/PKGBUILD | |
parent | b509d58f0ff9d5b9167eb65b0264d014c8ac9d66 (diff) |
Thu Jul 11 01:37:50 PDT 2013
Diffstat (limited to 'community/libfm/PKGBUILD')
-rw-r--r-- | community/libfm/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/community/libfm/PKGBUILD b/community/libfm/PKGBUILD index b84cd94f9..b92caf778 100644 --- a/community/libfm/PKGBUILD +++ b/community/libfm/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 87492 2013-04-01 17:16:51Z bpiotrowski $ +# $Id: PKGBUILD 93766 2013-07-10 06:57:36Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> # Contributor: Unknown47 <unknown47r@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> @@ -6,7 +6,7 @@ pkgname=libfm pkgver=1.1.0 -pkgrel=4 +pkgrel=5 pkgdesc='Library for file management' url='http://pcmanfm.sourceforge.net/' arch=('i686' 'x86_64') @@ -19,8 +19,7 @@ source=(http://downloads.sourceforge.net/pcmanfm/$pkgname-$pkgver.tar.gz) md5sums=('a5bc8b8291cf810c659bfb3af378b5de') build() { - cd $srcdir/$pkgname-$pkgver - + cd $pkgname-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --enable-udisks \ @@ -29,10 +28,10 @@ build() { } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install # Temporary fix to FS#32361 - rm $pkgdir/usr/include/libfm - mv $pkgdir/usr/include/libfm-1.0/ $pkgdir/usr/include/libfm + rm "$pkgdir"/usr/include/libfm + mv "$pkgdir"/usr/include/libfm-1.0/ "$pkgdir"/usr/include/libfm } |