diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-12 07:25:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-12 07:25:04 +0000 |
commit | d6c42d7f19e219670abe94dda99db88c1fc712bb (patch) | |
tree | 2a842907fe5b61d1a74cb8748ba2c0c3065e520a /x11/xarchiver | |
parent | 6c09d61f517f20dd18137702692cf1fd64dbc644 (diff) | |
download | aports-d6c42d7f19e219670abe94dda99db88c1fc712bb.tar.bz2 aports-d6c42d7f19e219670abe94dda99db88c1fc712bb.tar.xz |
x11/xarchiver: new aport
GTK+ frontend to various command line archivers
http://xarchiver.xfce.org/
Diffstat (limited to 'x11/xarchiver')
-rw-r--r-- | x11/xarchiver/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/x11/xarchiver/APKBUILD b/x11/xarchiver/APKBUILD new file mode 100644 index 0000000000..0ed45971e0 --- /dev/null +++ b/x11/xarchiver/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=xarchiver +pkgver=0.5.2 +pkgrel=0 +pkgdesc="GTK+ frontend to various command line archivers" +url="http://xarchiver.xfce.org/" +license="GPL" +depends="desktop-file-utils hicolor-icon-theme tar" +makedepends="intltool gtk+-dev" +install= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir/xarchiver-$pkgver" + ./configure --prefix=/usr \ + --libexecdir=/usr/lib/xfce4 || return 1 + make || return 1 +} + +package() { + cd "$srcdir/xarchiver-$pkgver" + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="2bc7f06403cc6582dd4a8029ec9d038d xarchiver-0.5.2.tar.bz2" |