diff options
Diffstat (limited to 'coreutils')
-rwxr-xr-x | coreutils/Pkgfile | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/coreutils/Pkgfile b/coreutils/Pkgfile index e6144c83e..cd0437407 100755 --- a/coreutils/Pkgfile +++ b/coreutils/Pkgfile @@ -6,31 +6,34 @@ name=coreutils version=8.15 release=1 -source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.xz \ - http://www.linuxfromscratch.org/patches/lfs/development/coreutils-$version-i18n-1.patch\ +source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.xz + http://www.linuxfromscratch.org/patches/lfs/development/coreutils-$version-i18n-1.patch http://www.linuxfromscratch.org/patches/lfs/development/coreutils-$version-uname-1.patch) + build() { cd $name-$version -case `uname -m` in - i?86 | x86_64) patch -Np1 -i ../coreutils-$version-uname-1.patch ;; -esac -patch -Np1 -i ../$name-$version-i18n-1.patch + case `uname -m` in + i?86 | x86_64) patch -Np1 -i ../$name-$version-uname-1.patch ;; + esac + patch -Np1 -i ../$name-$version-i18n-1.patch -./configure --prefix=/usr --enable-no-install-program=kill,uptime,hostname -make -make DESTDIR=$PKG install + ./configure --prefix=/usr \ + --libexecdir=/usr/lib \ + --enable-no-install-program=kill,uptime,hostname + make + make DESTDIR=$PKG install -mkdir $PKG/{bin,usr/sbin} -mv $PKG/usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} $PKG/bin -mv $PKG/usr/bin/{false,ln,ls,mkdir,mknod,mv,pwd,readlink,rm} $PKG/bin -mv $PKG/usr/bin/{rmdir,stty,sync,true,uname} $PKG/bin -mv -v $PKG/usr/bin/chroot $PKG/usr/sbin -mkdir -p $PKG/usr/share/man/man8/ -mv -v $PKG/usr/share/man/man1/chroot.1 $PKG/usr/share/man/man8/chroot.8 -sed -i s/\"1\"/\"8\"/1 $PKG/usr/share/man/man8/chroot.8 -mv -v $PKG/usr/bin/{head,sleep,nice} $PKG/bin -if [ -f $PKG/usr/share/info/dir ]; then - rm $PKG/usr/share/info/dir -fi + mkdir $PKG/{bin,usr/sbin} + mv $PKG/usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} $PKG/bin + mv $PKG/usr/bin/{false,ln,ls,mkdir,mknod,mv,pwd,readlink,rm} $PKG/bin + mv $PKG/usr/bin/{rmdir,stty,sync,true,uname} $PKG/bin + mv -v $PKG/usr/bin/chroot $PKG/usr/sbin + mkdir -p $PKG/usr/share/man/man8/ + mv -v $PKG/usr/share/man/man1/chroot.1 $PKG/usr/share/man/man8/chroot.8 + sed -i s/\"1\"/\"8\"/1 $PKG/usr/share/man/man8/chroot.8 + mv -v $PKG/usr/bin/{head,sleep,nice} $PKG/bin + if [ -f $PKG/usr/share/info/dir ]; then + rm $PKG/usr/share/info/dir + fi } |