mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
643 B
Bash
18 lines
643 B
Bash
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
# Previous Contributor: Johannes Schriewer <jschriewer@arcor.de>
|
|
pkgname=zisofs-tools
|
|
pkgver=1.0.8
|
|
pkgrel=2
|
|
pkgdesc="Tools for creating transparently compressed ISO files"
|
|
url="ftp://ftp.kernel.org/pub/linux/utils/fs/zisofs/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('cdrkit')
|
|
source=(ftp://ftp.kernel.org/pub/linux/utils/fs/zisofs/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('2d0ed8c9a1f60b45f949b136f9be1f6c')
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make install INSTALLROOT="$pkgdir" mandir=/usr/share/man || return 1
|
|
}
|