blob: 4f3a62cb357342106d9ad722014e8230d2189096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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"
|