aboutsummaryrefslogtreecommitdiffstats
path: root/extra/diffutils
diff options
context:
space:
mode:
authorLeonardo Arena <root@df1844j.(none)>2009-01-20 08:53:29 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-01-20 09:05:54 +0000
commit3b847621b75c355d7d97d102f4cf0ea1b37a4e14 (patch)
treed5e97e90bb341697ffbd23f591aaaf4a7e43e5ff /extra/diffutils
parentc26d0e847cea6ffec6154067a68d6343afd2c66f (diff)
downloadaports-3b847621b75c355d7d97d102f4cf0ea1b37a4e14.tar.bz2
aports-3b847621b75c355d7d97d102f4cf0ea1b37a4e14.tar.xz
extra/diffutils: new aport
Diffstat (limited to 'extra/diffutils')
-rw-r--r--extra/diffutils/APKBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/diffutils/APKBUILD b/extra/diffutils/APKBUILD
new file mode 100644
index 0000000000..03593e8556
--- /dev/null
+++ b/extra/diffutils/APKBUILD
@@ -0,0 +1,23 @@
+# Contributor: Leonardo Arena <rnalrd@gmail.com>
+pkgname=diffutils
+pkgver=2.8.1
+pkgrel=0
+pkgdesc="Show differences among files"
+subpackages="$pkgname-doc"
+arch=""
+url="http://www.gnu.org/software/diffutils/"
+license="GPL2"
+depends="uclibc"
+makedepends=""
+install=
+source="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-2.8.1.tar.gz"
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make || return 1
+ make check || return 1
+ make install DESTDIR=$pkgdir
+}
+md5sums="71f9c5ae19b60608f6c7f162da86a428 diffutils-2.8.1.tar.gz"