blob: 26113ba39bdb9d040533cf053479189374de27c5 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $Id: PKGBUILD 210100 2014-04-09 22:21:54Z thomas $
# Maintainer: Sébastien "Seblu" Luttringer
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=coreutils
pkgver=8.22
pkgrel=4
pkgdesc='The basic file, shell and text manipulation utilities of the GNU operating system'
arch=('i686' 'x86_64')
license=('GPL3')
url='http://www.gnu.org/software/coreutils'
groups=('base')
depends=('glibc' 'pam' 'acl' 'gmp' 'libcap' 'openssl')
install=$pkgname.install
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
coreutils-8.22-shuf-segfault.patch
0001-cp-don-t-reserve-a-device-number.patch)
md5sums=('8fb0ae2267aa6e728958adc38f8163a2'
'SKIP'
'94f7e6f373f37beb236caabed8fcdb52'
'ac3825f60b6e0300e375f656a3667c52')
prepare() {
cd $pkgname-$pkgver
patch -p1 -i ../coreutils-8.22-shuf-segfault.patch
patch -p1 -i ../0001-cp-don-t-reserve-a-device-number.patch
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --libexecdir=/usr/lib --with-openssl \
--enable-no-install-program=groups,hostname,kill,uptime
make
}
check() {
cd $pkgname-$pkgver
make RUN_EXPENSIVE_TESTS=yes check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|