coreutils: updated to 8.22

This commit is contained in:
Fabian 2014-02-25 23:30:14 +00:00
parent 7e554bbcf3
commit 40abeb079c

View File

@ -4,7 +4,7 @@
# maintainer abveritas@chakra-project.org # maintainer abveritas@chakra-project.org
pkgname=coreutils pkgname=coreutils
pkgver=8.21 pkgver=8.22
pkgrel=1 pkgrel=1
pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system" pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system"
arch=('x86_64') arch=('x86_64')
@ -14,13 +14,13 @@ groups=('base')
depends=('glibc' 'pam' 'acl' 'gmp' 'libcap') depends=('glibc' 'pam' 'acl' 'gmp' 'libcap')
install=${pkgname}.install install=${pkgname}.install
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
md5sums=('065ba41828644eca5dd8163446de5d64' md5sums=('8fb0ae2267aa6e728958adc38f8163a2'
'5d68aee0cfb701c13ec624ad8df142a9') 'SKIP')
build() { build() {
cd ${srcdir}/${pkgname}-${pkgver} cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --libexecdir=/usr/lib \ ./configure --prefix=/usr --libexecdir=/usr/lib --with-openssl\
--enable-no-install-program=groups,hostname,kill,uptime --enable-no-install-program=groups,hostname,kill,uptime
make make
} }
@ -38,7 +38,7 @@ package() {
install -dm755 ${pkgdir}/bin install -dm755 ${pkgdir}/bin
# makepkg requirement # makepkg requirement
ln -s /usr/bin/du "${pkgdir}/bin/du" ln -s /usr/bin/du "${pkgdir}/bin/du"
# binaries required by FHS # binaries required by FHS; TODO: do we really want to keep those under /bin?
_fhs=('cat' 'chgrp' 'chmod' 'chown' 'cp' 'date' 'dd' 'df' 'echo' 'false' _fhs=('cat' 'chgrp' 'chmod' 'chown' 'cp' 'date' 'dd' 'df' 'echo' 'false'
'ln' 'ls' 'mkdir' 'mknod' 'mv' 'pwd' 'rm' 'rmdir' 'stty' 'sync' 'ln' 'ls' 'mkdir' 'mknod' 'mv' 'pwd' 'rm' 'rmdir' 'stty' 'sync'
'true' 'uname') 'true' 'uname')