diff options
Diffstat (limited to 'community/spacefm/PKGBUILD')
-rw-r--r-- | community/spacefm/PKGBUILD | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD index 9de16b687..a87cc4df0 100644 --- a/community/spacefm/PKGBUILD +++ b/community/spacefm/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 72589 2012-06-17 07:23:49Z bpiotrowski $ +# $Id: PKGBUILD 75235 2012-08-16 20:04:22Z 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.7.8 +pkgver=0.7.11 pkgrel=1 pkgdesc="A multi-panel tabbed file manager" arch=('i686' 'x86_64') @@ -14,33 +14,24 @@ install=$pkgname.install depends=('gtk2' 'shared-mime-info' 'desktop-file-utils' 'startup-notification' 'udev') makedepends=('intltool' 'gettext') optdepends=('lsof: device processes' - 'eject: eject media' + 'eject: eject media' 'wget: plugin download' 'gksu: perform as root functionality' 'pmount: mount as non-root user' + 'udevil: mount as non-root user and mount networks' 'udisks: mount as non-root user' 'udisks2: mount as non-root user') - #'ktsuss: perform as root functionality' (AUR) - #'udevil-git: mount as non-root user and mount networks' (AUR) source=(https://raw.github.com/IgnorantGuru/spacefm/master/packages/${pkgver}/spacefm-${pkgver}.tar.xz) -md5sums=('746b8f55735217a0e6d48e4e666a7534') +md5sums=('99719d34fd60ad9514c10a25f52d0bb3') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # NOTE: To enable hal support add --enable-hal to - # configure line below. See README for details. - # NOTE: To disable inotify and use fam or gamin instead, add: - # --disable-inotify to configure line below. - # NOTE: To add a custom su program (mysu in this example), add: - # --with-preferable-sudo="mysu" to configure line below. - - ./configure --prefix=/usr - make + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-pixmaps + make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}/" install + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install } - |