description="A collection of core GNU utilities." packager="" maintainer="CRUX System Team, core-ports at crux dot nu" url="http://www.gnu.org/software/coreutils/" depends=(libgmp acl libcap) name=coreutils version=8.7 release=1 source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.xz coreutils-uname.patch) build () { cd $name-$version; patch -p1 -i $SRC/coreutils-uname.patch; ./configure \ ${CHOST:+--host=${CHOST}} \ ${CBUILD:+--build=${CBUILD}} \ --prefix=$prefix \ --mandir=$mandir \ $(use_enable nls) \ --disable-assert \ --enable-no-install-program=uptime,kill,chcon,runcon,groups; make; make DESTDIR=$PKG install; mkdir $PKG/bin; mv $PKG$prefix/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo,false,ln,ls,mkdir,sleep} $PKG/bin; mv $PKG$prefix/bin/{mknod,mv,pwd,readlink,rm,rmdir,stty,sync,touch,true,uname} $PKG/bin; }