aboutsummaryrefslogtreecommitdiffstats
path: root/main/diffutils
diff options
context:
space:
mode:
authorMichael Mason <ms13sp@gmail.com>2010-03-17 17:43:41 +0000
committerMichael Mason <ms13sp@gmail.com>2010-03-17 17:43:41 +0000
commit4b23d4dfa33b09440ffbdfccbd46571649ccecaa (patch)
tree02c3b507f3e038c1e191fa97d59562b468e64b65 /main/diffutils
parente59a787cc0775b8f7f97d492674a257baef45f6d (diff)
parent192b8fad759488bbe2fea1b43acda638eb6ebe85 (diff)
downloadaports-4b23d4dfa33b09440ffbdfccbd46571649ccecaa.tar.bz2
aports-4b23d4dfa33b09440ffbdfccbd46571649ccecaa.tar.xz
Merge branch 'master' of git://git.alpinelinux.org/aports
Diffstat (limited to 'main/diffutils')
-rw-r--r--main/diffutils/APKBUILD18
1 files changed, 12 insertions, 6 deletions
diff --git a/main/diffutils/APKBUILD b/main/diffutils/APKBUILD
index 5a9177130f..004d0e91fb 100644
--- a/main/diffutils/APKBUILD
+++ b/main/diffutils/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@gmail.com>
pkgname=diffutils
-pkgver=2.8.1
-pkgrel=1
+pkgver=2.9
+pkgrel=0
pkgdesc="Show differences among files"
subpackages="$pkgname-doc"
url="http://www.gnu.org/software/diffutils/"
@@ -9,18 +9,24 @@ license="GPL2"
depends="uclibc"
makedepends=""
install="$pkgname.post-deinstall"
-source="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-2.8.1.tar.gz
+source="http://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz
$install"
+_builddir=$srcdir/$pkgname-$pkgver
+
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$_builddir"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make || return 1
- make check || return 1
+}
+
+package() {
+ cd "$_builddir"
make install DESTDIR=$pkgdir
}
-md5sums="71f9c5ae19b60608f6c7f162da86a428 diffutils-2.8.1.tar.gz
+
+md5sums="d6bc1bdc874ddb14cfed4d1655a0dbbe diffutils-2.9.tar.gz
e8da9a22c2389fe5e2846b8c0de45767 diffutils.post-deinstall"