mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
642 B
Bash
21 lines
642 B
Bash
# $Id: PKGBUILD 25234 2009-01-24 13:09:48Z douglas $
|
|
# Contributor: Aurelien Foret <orelien@chez.com>
|
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
pkgname=patchutils
|
|
pkgver=0.3.1
|
|
pkgrel=1
|
|
pkgdesc="A small collection of programs that operate on patch files"
|
|
license=('GPL')
|
|
url="http://cyberelk.net/tim/patchutils/"
|
|
depends=('perl')
|
|
arch=('i686' 'x86_64')
|
|
source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('3fd9bca58a429fbbb1c2126f1b72aa23')
|