diff options
Diffstat (limited to 'community/libfm')
-rw-r--r-- | community/libfm/PKGBUILD | 37 | ||||
-rw-r--r-- | community/libfm/libfm.install | 15 |
2 files changed, 52 insertions, 0 deletions
diff --git a/community/libfm/PKGBUILD b/community/libfm/PKGBUILD new file mode 100644 index 000000000..b92caf778 --- /dev/null +++ b/community/libfm/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 93766 2013-07-10 06:57:36Z 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=libfm +pkgver=1.1.0 +pkgrel=5 +pkgdesc='Library for file management' +url='http://pcmanfm.sourceforge.net/' +arch=('i686' 'x86_64') +license=('GPL') +groups=('lxde') +options=('!libtool') +install=libfm.install +depends=('gtk2' 'menu-cache' 'shared-mime-info' 'udisks' 'desktop-file-utils') +source=(http://downloads.sourceforge.net/pcmanfm/$pkgname-$pkgver.tar.gz) +md5sums=('a5bc8b8291cf810c659bfb3af378b5de') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --enable-udisks \ + --with-gnu-ld + make LDFLAGS+=' -lgobject-2.0 -lglib-2.0' +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + + # Temporary fix to FS#32361 + rm "$pkgdir"/usr/include/libfm + mv "$pkgdir"/usr/include/libfm-1.0/ "$pkgdir"/usr/include/libfm +} diff --git a/community/libfm/libfm.install b/community/libfm/libfm.install new file mode 100644 index 000000000..e83eccb55 --- /dev/null +++ b/community/libfm/libfm.install @@ -0,0 +1,15 @@ +post_install() { + update-mime-database /usr/share/mime > /dev/null + update-desktop-database -q + #[ -d /usr/lib/gio/modules ] && gio-querymodules /usr/lib/gio/modules +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + + |