mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
|
# $Id: PKGBUILD 2111 2009-09-08 17:40:46Z shusmann $
|
||
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||
|
# Contributor: leif_thande <leif.thande@gmail.com>
|
||
|
# Contributor: tranquility <trankas@gmail.com>
|
||
|
|
||
|
pkgname=atool
|
||
|
pkgver=0.37.0
|
||
|
pkgrel=3
|
||
|
pkgdesc="A script for managing file archives of various types"
|
||
|
arch=('any')
|
||
|
url="http://www.nongnu.org/atool/"
|
||
|
license=('GPL3')
|
||
|
depends=('file' 'perl')
|
||
|
optdepends=('bzip2: for using atool with bzip2 compressed archives'
|
||
|
'cpio: for using atool with cpio archives'
|
||
|
'gzip: for using atool with gzip compressed archives'
|
||
|
'lha: for using atool with lha, lharc and similar archives'
|
||
|
'lzma-utils: for using atool with lzma compressed archives'
|
||
|
'lzop: for using atool with lzop compressed archives'
|
||
|
'p7zip: for using atool with 7z archives'
|
||
|
'tar: for using atool with tar archives'
|
||
|
'unace: for using atool with ace archives'
|
||
|
'zip: for using atool for creating zip archives'
|
||
|
'unzip: for using atool for unpacking archives')
|
||
|
source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('2607e9b19518af4145be8a6bed454477')
|
||
|
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make prefix=${pkgdir}/usr install || return 1
|
||
|
}
|