diff options
Diffstat (limited to 'extra/xarchiver/PKGBUILD')
-rw-r--r-- | extra/xarchiver/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/extra/xarchiver/PKGBUILD b/extra/xarchiver/PKGBUILD new file mode 100644 index 000000000..4934636fc --- /dev/null +++ b/extra/xarchiver/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 20752 2008-12-06 14:28:02Z alexanderf $ +# Maintainer: Alexander Fehr <pizzapunk gmail com> +# Contributor: Andrew Simmons <andrew.simmons@gmail.com> + +pkgname=xarchiver +pkgver=0.5.2 +pkgrel=1 +pkgdesc="GTK+ frontend to various command line archivers" +arch=('i686' 'x86_64') +url="http://xarchiver.xfce.org/" +license=('GPL') +groups=('xfce4-goodies') +depends=('gtk2' 'desktop-file-utils' 'hicolor-icon-theme') +makedepends=('intltool') +optdepends=('tar: TAR support' + 'gzip: GZIP support' + 'bzip2: BZIP2 support' + 'zip: ZIP support' + 'unzip: ZIP support' + 'unrar: RAR support' + 'p7zip: 7z support' + 'arj: ARJ support' + 'lha: LHA support' + 'lzma-utils: LZMA support' + 'lzop: LZOP support') +options=('!libtool') +install=xarchiver.install +source=(http://downloads.sourceforge.net/xarchiver/xarchiver-$pkgver.tar.bz2) +md5sums=('2bc7f06403cc6582dd4a8029ec9d038d') + +build() { + cd "$srcdir/xarchiver-$pkgver" + + ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} |