diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/pcmanfm/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/pcmanfm/PKGBUILD')
-rw-r--r-- | community/pcmanfm/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/pcmanfm/PKGBUILD b/community/pcmanfm/PKGBUILD new file mode 100644 index 000000000..5157d3ce9 --- /dev/null +++ b/community/pcmanfm/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 95467 2013-08-12 19:57:14Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> +# Contributor: Unknown47 <unknown47r@gmail.com> +# Contributor: Angel Velasquez <angvp@archlinux.org> +# Contributor: Juergen Hoetzel <juergen@archlinux.org> + +pkgname=pcmanfm +pkgver=1.1.2 +pkgrel=1 +pkgdesc="An extremely fast and lightweight file manager" +arch=('i686' 'x86_64') +url="http://pcmanfm.sourceforge.net/" +license=('GPL') +groups=('lxde') +depends=('gtk2' 'desktop-file-utils' 'libfm' 'lxmenu-data') +makedepends=('intltool' 'pkgconfig') +install=$pkgname.install +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.gz) +md5sums=('41104699e653ff2b0a9a9e80a257d6a2') + +build() { + cd $srcdir/$pkgname-$pkgver + + ./configure --sysconfdir=/etc --prefix=/usr + make LDFLAGS+=' -lm' +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR="$pkgdir" install + + sed -e 's|x-directory/normal|inode/directory|' -i $pkgdir/usr/share/applications/pcmanfm.desktop +} |