diff options
author | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
commit | 9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch) | |
tree | ae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /base/coreutils/Pkgfile | |
parent | c9972ec7f32bf9d37388e853fe9bf633e242d05a (diff) | |
download | nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2 nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip |
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'base/coreutils/Pkgfile')
-rwxr-xr-x | base/coreutils/Pkgfile | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/base/coreutils/Pkgfile b/base/coreutils/Pkgfile deleted file mode 100755 index 7f9776a4b..000000000 --- a/base/coreutils/Pkgfile +++ /dev/null @@ -1,36 +0,0 @@ -# Description: Collection d'utilitaire pour le coeur du systeme GNU -# URL: http://www.gnu.org/software/coreutils/ -# Maintainer: NuTyX core team -# Packager: thierryn1 at hispeed dot ch - -name=coreutils -version=8.12 -release=1 -source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz \ - 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 - -./configure --prefix=/usr --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 -} |