Merge branch 'master' of ssh://git.chakraos.org:86/apps

This commit is contained in:
Neophytos Kolokotronis 2015-03-23 11:47:24 +00:00
commit ec602b8a2a

24
patchutils/PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
pkgname=patchutils
pkgver=0.3.3
pkgrel=1
pkgdesc="A small collection of programs that operate on patch files"
license=('GPL')
url="http://cyberelk.net/tim/patchutils/"
depends=('perl')
arch=('x86_64')
source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.xz)
sha1sums=('89d3f8a454bacede1b9a112b3a13701ed876fcc1')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}