2006-02-23 15:26:10 +00:00
|
|
|
|
# Description: A collection of core GNU utilities
|
|
|
|
|
# URL: http://www.gnu.org/software/coreutils/
|
2006-04-20 20:37:09 +00:00
|
|
|
|
# Maintainer: Per Lid<69>n, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
|
|
name=coreutils
|
2006-11-20 16:12:44 +01:00
|
|
|
|
version=6.5
|
2006-11-22 08:03:42 +01:00
|
|
|
|
release=2
|
2006-07-31 14:26:39 +00:00
|
|
|
|
source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.bz2 \
|
2006-11-22 08:03:42 +01:00
|
|
|
|
$name-uname.patch $name-$version-idcache.patch)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd $name-$version
|
2006-11-22 08:03:42 +01:00
|
|
|
|
|
|
|
|
|
patch -p1 < $SRC/$name-uname.patch
|
|
|
|
|
patch -d lib -p0 < $SRC/$name-$version-idcache.patch
|
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
|
DEFAULT_POSIX2_VERSION=199209 \
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--mandir=/usr/man \
|
|
|
|
|
--disable-nls \
|
|
|
|
|
--disable-assert
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
2006-11-22 08:03:42 +01:00
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
|
mkdir $PKG/bin
|
|
|
|
|
mv $PKG/usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo,false,ln,ls,mkdir} $PKG/bin
|
|
|
|
|
mv $PKG/usr/bin/{mknod,mv,pwd,readlink,rm,rmdir,stty,sync,touch,true,uname} $PKG/bin
|
|
|
|
|
rm $PKG/usr/bin/hostname $PKG/usr/man/man1/hostname.1 # conflicts with net-tools
|
|
|
|
|
rm $PKG/usr/bin/uptime $PKG/usr/man/man1/uptime.1 # conflicts with procps
|
|
|
|
|
rm $PKG/usr/bin/su $PKG/usr/man/man1/su.1 # conflicts with shadow
|
|
|
|
|
rm $PKG/usr/bin/groups $PKG/usr/man/man1/groups.1 # conflicts with shadow
|
|
|
|
|
rm $PKG/usr/bin/kill $PKG/usr/man/man1/kill.1 # conflicts with util-linux
|
|
|
|
|
rm -rf $PKG/usr/share $PKG/usr/lib
|
|
|
|
|
}
|