diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/gnome-commander/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/gnome-commander/PKGBUILD')
-rw-r--r-- | community/gnome-commander/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/community/gnome-commander/PKGBUILD b/community/gnome-commander/PKGBUILD new file mode 100644 index 000000000..6ca662aec --- /dev/null +++ b/community/gnome-commander/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 60311 2011-12-10 09:50:50Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Roman Kyrylych <roman@archlinux.org> +# Contributor: Johannes Sjolund <j.sjolund@gmail.com> + +pkgname=gnome-commander +pkgver=1.2.8.15 +pkgrel=1 +pkgdesc="A graphical two-pane filemanager for Gnome" +arch=('i686' 'x86_64') +url="http://www.nongnu.org/gcmd/" +license=('GPL') +depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm') +makedepends=('perlxml' 'gnome-doc-utils>=0.20.1' 'intltool') +options=(!libtool) +install=gnome-commander.install +source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.2/$pkgname-$pkgver.tar.xz) +sha256sums=('d2feecf215db3e0faeb873c559087c2ad9af0a5aac26e2b1b32b28be939da37f') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # python2 fix + for file in doc/*/gnome-commander.xml; do + sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file + done + + ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc \ + --localstatedir=/var --disable-scrollkeeper --enable-python + + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install + + mkdir -p "$pkgdir"/usr/share/gconf/schemas + gconf-merge-schema "$pkgdir"/usr/share/gconf/schemas/$pkgname.schemas \ + --domain $pkgname "$pkgdir"/etc/gconf/schemas/*.schemas + rm -rf "$pkgdir"/etc/gconf/schemas/ +} |