summaryrefslogtreecommitdiffstats
path: root/main/coreutils/APKBUILD
blob: 8f00df03653b62c11e1f8a90e9fa1e9a43aa5bcf (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
# Contributor: Michael Mason <ms13sp@gmail.com> 
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=coreutils
pkgver=7.6
pkgrel=0
pkgdesc="The basic file, shell and text manipulation utilities"
url="http://www.gnu.org/software/coreutils/"
license="GPL"
depends=
makedepends=
install="$pkgname.post-deinstall $pkgname.post-upgrade"
subpackages="$pkgname-doc"
source="http://ftp.gnu.org/gnu/coreutils/$pkgname-$pkgver.tar.gz"
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="3d82f979229365f880da750642e67cf3  coreutils-7.6.tar.gz"