From a5ebc4e938bff146f881f09edd4beddffdb54468 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 30 Jan 2012 13:45:10 +0000 Subject: testing/patchutils: new aport A collection of programs for manipulating patch files http://cyberelk.net/tim/patchutils/ --- testing/patchutils/APKBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 testing/patchutils/APKBUILD (limited to 'testing/patchutils/APKBUILD') diff --git a/testing/patchutils/APKBUILD b/testing/patchutils/APKBUILD new file mode 100644 index 000000000..05a265882 --- /dev/null +++ b/testing/patchutils/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=patchutils +pkgver=0.3.2 +pkgrel=0 +pkgdesc="A collection of programs for manipulating patch files" +url="http://cyberelk.net/tim/patchutils/" +arch="all" +license="GPLv2+" +depends="" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="http://cyberelk.net/tim/data/patchutils/stable/patchutils-$pkgver.tar.bz2" + +_builddir="$srcdir"/patchutils-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="74607b4a28c9009c6aeeed0e91098917 patchutils-0.3.2.tar.bz2" -- cgit v1.2.3