# $Id: PKGBUILD 60696 2011-12-17 00:36:28Z seblu $ # Maintainer: Sebastien Luttringer # Contributor: Peter Richard Lewis # Contributor: Jan de Groot # Contributor: dibblethewrecker pkgname=quilt pkgver=0.50 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=('ff5e1e041363c3af3c8fda4b968c9d1d') 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: