diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/diffutils | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/diffutils')
-rw-r--r-- | main/diffutils/APKBUILD | 26 | ||||
-rw-r--r-- | main/diffutils/diffutils.post-deinstall | 2 |
2 files changed, 28 insertions, 0 deletions
diff --git a/main/diffutils/APKBUILD b/main/diffutils/APKBUILD new file mode 100644 index 0000000000..5a9177130f --- /dev/null +++ b/main/diffutils/APKBUILD @@ -0,0 +1,26 @@ +# Maintainer: Leonardo Arena <rnalrd@gmail.com> +pkgname=diffutils +pkgver=2.8.1 +pkgrel=1 +pkgdesc="Show differences among files" +subpackages="$pkgname-doc" +url="http://www.gnu.org/software/diffutils/" +license="GPL2" +depends="uclibc" +makedepends="" +install="$pkgname.post-deinstall" +source="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-2.8.1.tar.gz +$install" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make check || return 1 + make install DESTDIR=$pkgdir +} +md5sums="71f9c5ae19b60608f6c7f162da86a428 diffutils-2.8.1.tar.gz +e8da9a22c2389fe5e2846b8c0de45767 diffutils.post-deinstall" diff --git a/main/diffutils/diffutils.post-deinstall b/main/diffutils/diffutils.post-deinstall new file mode 100644 index 0000000000..c59247ad41 --- /dev/null +++ b/main/diffutils/diffutils.post-deinstall @@ -0,0 +1,2 @@ +#!/bin/sh +busybox --install -s |