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/coreutils | |
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/coreutils')
-rw-r--r-- | main/coreutils/APKBUILD | 31 | ||||
-rw-r--r-- | main/coreutils/coreutils.post-deinstall | 3 | ||||
l--------- | main/coreutils/coreutils.post-upgrade | 1 |
3 files changed, 35 insertions, 0 deletions
diff --git a/main/coreutils/APKBUILD b/main/coreutils/APKBUILD new file mode 100644 index 0000000000..4f3a62cb35 --- /dev/null +++ b/main/coreutils/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=coreutils +pkgver=7.4 +pkgrel=0 +pkgdesc="The basic file, shell and text manipulation utilities" +url="http://www.gnu.org/software/coreutils/" +license="GPL" +depends="uclibc" +makedepends="" +install="$pkgname.post-deinstall $pkgname.post-upgrade" +subpackages="$pkgname-doc" +source="http://ftp.gnu.org/gnu/coreutils/$pkgname-$pkgver.tar.gz + $install" +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-nls \ + --without-gmp + make || return 1 + make DESTDIR="$pkgdir" install + +} + +md5sums="c52f4f64dda9a245c38e74c09fdd86d2 coreutils-7.4.tar.gz +b84506d253e04db3c5af9016fead45a3 coreutils.post-deinstall +b84506d253e04db3c5af9016fead45a3 coreutils.post-upgrade" diff --git a/main/coreutils/coreutils.post-deinstall b/main/coreutils/coreutils.post-deinstall new file mode 100644 index 0000000000..99b57c4635 --- /dev/null +++ b/main/coreutils/coreutils.post-deinstall @@ -0,0 +1,3 @@ +#!/bin/sh + +busybox --install -s diff --git a/main/coreutils/coreutils.post-upgrade b/main/coreutils/coreutils.post-upgrade new file mode 120000 index 0000000000..3e2b3c2a22 --- /dev/null +++ b/main/coreutils/coreutils.post-upgrade @@ -0,0 +1 @@ +coreutils.post-deinstall
\ No newline at end of file |