# $Id: PKGBUILD 63831 2012-02-06 00:30:28Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Peter Richard Lewis # Contributor: Jan de Groot # Contributor: dibblethewrecker pkgname=quilt pkgver=0.51 pkgrel=1 pkgdesc='Manage a series of patches by keeping track of the changes each patch makes' arch=('i686' 'x86_64') url='http://savannah.nongnu.org/projects/quilt' license=('GPL2') depends=('diffstat' 'gawk' 'patch' 'diffutils' 'gettext') source=("http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz") md5sums=('d56d23d5212297d5777502e84dc0ee80') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr --mandir=/usr/share/man make } package() { cd ${pkgname}-${pkgver} make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install } # vim:set ts=2 sw=2 ft=sh et: