blob: 2abf0e7ad222910c73403ff59e56ccb7bae258cb (
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
38
39
40
|
# $Id: PKGBUILD 121261 2011-04-29 22:06:13Z andyrtr $
# Maintainer: Alexander Fehr <pizzapunk gmail com>
# Contributor: Andrew Simmons <andrew.simmons@gmail.com>
pkgname=xarchiver
pkgver=0.5.2
pkgrel=2
pkgdesc="GTK+ frontend to various command line archivers"
arch=('i686' 'x86_64')
url="http://xarchiver.sourceforge.net"
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
make
}
package() {
cd "$srcdir/xarchiver-$pkgver"
make DESTDIR="$pkgdir" install
}
|