mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# $Id: PKGBUILD 20748 2008-12-06 14:25:38Z 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
|
|
}
|