diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-20 03:40:05 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-20 03:40:05 +0000 |
commit | f4e0d41bdfa80b65960c85d4d526814a91f52e62 (patch) | |
tree | 43653b6dcc8152642eeb803f19d9b247a3aed871 /community/spacefm | |
parent | a7868499c166c245f671318faaaf777a802fbefe (diff) |
Mon Jan 20 03:36:38 UTC 2014
Diffstat (limited to 'community/spacefm')
-rw-r--r-- | community/spacefm/PKGBUILD | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD index dae8aa4d5..61aa478cd 100644 --- a/community/spacefm/PKGBUILD +++ b/community/spacefm/PKGBUILD @@ -1,37 +1,38 @@ -# $Id: PKGBUILD 102305 2013-12-07 21:26:57Z bpiotrowski $ +# $Id: PKGBUILD 104364 2014-01-19 14:07:40Z 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.2 +pkgver=0.9.3 pkgrel=1 pkgdesc='Multi-panel tabbed file manager' arch=('i686' 'x86_64') url='http://ignorantguru.github.com/spacefm/' license=('GPL3') install=$pkgname.install -depends=('gtk3' 'shared-mime-info' 'desktop-file-utils' 'startup-notification' 'udev') +depends=('gtk3' 'shared-mime-info' 'desktop-file-utils' 'startup-notification' + 'udev' 'bash') makedepends=('intltool' 'gettext') optdepends=('lsof: device processes' - 'eject: eject media' + 'eject: eject media' 'wget: plugin download' 'gksu: perform as root functionality' 'udevil: mount as non-root user and mount networks' 'udisks: mount as non-root user' 'udisks2: mount as non-root user') source=(https://github.com/IgnorantGuru/spacefm/archive/$pkgver.tar.gz) -md5sums=('f7d04110b4dd9c3c434bffe8b04bbb69') +md5sums=('6bbf41bc97a46a797500dbf0ae359971') build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr \ - --disable-pixmaps \ - --with-gtk3 - make + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-pixmaps \ + --with-gtk3 + make } package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install } |