diff options
Diffstat (limited to 'community/spacefm/PKGBUILD')
-rw-r--r-- | community/spacefm/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD index c0b4f49b5..dae8aa4d5 100644 --- a/community/spacefm/PKGBUILD +++ b/community/spacefm/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 99024 2013-10-22 17:56:30Z bpiotrowski $ +# $Id: PKGBUILD 102305 2013-12-07 21:26:57Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/ # Contributor: ridikulus_rat <the.ridikulus.rat@gmail.com> pkgname=spacefm -pkgver=0.9.0 +pkgver=0.9.2 pkgrel=1 pkgdesc='Multi-panel tabbed file manager' arch=('i686' 'x86_64') @@ -21,10 +21,10 @@ optdepends=('lsof: device processes' 'udisks: mount as non-root user' 'udisks2: mount as non-root user') source=(https://github.com/IgnorantGuru/spacefm/archive/$pkgver.tar.gz) -sha256sums=('cca3fcfecd148dca165a71bb14c66c8b29ae7a488a98b9e9662ae4b686b2c01b') +md5sums=('f7d04110b4dd9c3c434bffe8b04bbb69') build() { - cd $srcdir/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --prefix=/usr \ --disable-pixmaps \ --with-gtk3 @@ -32,6 +32,6 @@ build() { } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install } |