diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-20 03:34:20 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-20 03:34:20 +0000 |
commit | 2f8045ba14153d1665148e3cff527ce4f6bf66e5 (patch) | |
tree | 637a66d43f28d341e0504c3c75fea27e4e490312 /community/pcmanfm/PKGBUILD | |
parent | 322e623017947f32cb26db4c80f8eec2c5736401 (diff) |
Thu Feb 20 03:30:17 UTC 2014
Diffstat (limited to 'community/pcmanfm/PKGBUILD')
-rw-r--r-- | community/pcmanfm/PKGBUILD | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/community/pcmanfm/PKGBUILD b/community/pcmanfm/PKGBUILD index ef59a43b8..b9377e19f 100644 --- a/community/pcmanfm/PKGBUILD +++ b/community/pcmanfm/PKGBUILD @@ -1,34 +1,34 @@ -# $Id: PKGBUILD 97022 2013-09-10 14:32:02Z bpiotrowski $ -# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> +# $Id: PKGBUILD 105925 2014-02-19 10:35:08Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: Unknown47 <unknown47r@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Juergen Hoetzel <juergen@archlinux.org> pkgname=pcmanfm -pkgver=1.1.2 -pkgrel=2 -pkgdesc="An extremely fast and lightweight file manager" +pkgver=1.2.0 +pkgrel=1 +pkgdesc='Extremely fast and lightweight file manager' arch=('i686' 'x86_64') -url="http://pcmanfm.sourceforge.net/" +url='http://pcmanfm.sourceforge.net/' license=('GPL') groups=('lxde') depends=('gtk2' 'desktop-file-utils' 'libfm' 'lxmenu-data') makedepends=('intltool') optdepends=('gvfs: for trash support, mounting with udisk and remote filesystems') install=$pkgname.install -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.gz) -md5sums=('41104699e653ff2b0a9a9e80a257d6a2') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz) +md5sums=('11d59a492c9802866279a6e7e2b3f49e') build() { - cd $srcdir/$pkgname-$pkgver - - ./configure --sysconfdir=/etc --prefix=/usr + cd $pkgname-$pkgver + ./configure --sysconfdir=/etc --prefix=/usr make LDFLAGS+=' -lm' } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR="$pkgdir" install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install - sed -e 's|x-directory/normal|inode/directory|' -i $pkgdir/usr/share/applications/pcmanfm.desktop + sed -e 's|x-directory/normal|inode/directory|' -i \ + "$pkgdir"/usr/share/applications/pcmanfm.desktop } |