blob: 55756f58942b275f77099f5b1e1c9933b87765ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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' 'mips64el')
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
}
|