# Description: The C library used in the GNU system # URL: http://www.gnu.org/software/libc/ # Maintainer: CRUX System Team, core-ports at crux dot nu # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: name=glibc version=2.16.0 release=2 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-3.4.11.tar.bz2 \ http://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \ hosts resolv.conf nsswitch.conf host.conf ld.so.conf \ $name-resolv_assert.patch \ $name-strtod_integer_overflow.patch) build() { # install kernel headers cd linux-3.4.11 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install cd $SRC mv $name-ports-$version $name-$version/ports pushd $name-$version patch -p1 -i $SRC/$name-resolv_assert.patch patch -p1 -i $SRC/$name-strtod_integer_overflow.patch popd mkdir $SRC/build cd $SRC/build ../$name-$version/configure --prefix=/usr \ --build=arm-unknown-linux-gnueabihf \ --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ --with-tls \ --enable-kernel=2.6.25 \ --enable-add-ons \ --disable-profile \ --without-gd \ --enable-obsolete-rpc make make install_root=$PKG install cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale touch $PKG/etc/ld.so.cache rm -rf $PKG/usr/share/{info,locale} \ $PKG/usr/bin/tzselect \ $PKG/usr/sbin/z{dump,ic} }