CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
7c1d1097790824b503794562728657082a70bd14
[crossrootfs.git] / coreutils / Pkgfile
1 # Description: A collection of core GNU utilities
2 # URL: http://www.gnu.org/software/coreutils/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
5 # Depends on: libgmp
6
7 name=coreutils
8 version=8.4
9 release=2
10 source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz
11 coreutils-uname.patch)
12
13 build() {
14 cd $name-$version
15 patch -p1 -i $SRC/coreutils-uname.patch
16
17 for f in $(find man/ -type f -name '*.x' -exec basename {} .x \;); do
18 touch $f
19 done
20
21 cat > config.cache <<EOF
22 ac_cv_search_clock_gettime=no
23 fu_cv_sys_stat_statfs2_bsize=yes
24 gl_cv_func_rename_trailing_slash_bug=no
25 gl_cv_func_mbrtowc_incomplete_state=yes
26 gl_cv_func_mbrtowc_null_retval=yes
27 gl_cv_func_mbrtowc_null_arg=yes
28 gl_cv_func_mbrtowc_retval=yes
29 gl_cv_func_btowc_eof=yes
30 gl_cv_func_wcrtomb_retval=yes
31 gl_cv_func_wctob_works=yes
32 EOF
33
34 DEFAULT_POSIX2_VERSION=199209 \
35 GPERF=false \
36 ./configure --build=$CHOST \
37 --host=$CTARGET \
38 --prefix=/usr \
39 --mandir=/usr/man \
40 --disable-nls \
41 --disable-assert \
42 --disable-libcap \
43 --disable-xattr \
44 --enable-no-install-program=uptime,kill,chcon,runcon,groups \
45 --cache-file=config.cache
46
47 make
48 make DESTDIR=$PKG install
49
50 install -d $PKG/bin
51 mv $PKG/usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo,false,ln,ls,mkdir,sleep} $PKG/bin
52 mv $PKG/usr/bin/{mknod,mv,pwd,readlink,rm,rmdir,stty,sync,touch,true,uname} $PKG/bin
53 rm -r $PKG/usr/share
54 }