core/glibc/Pkgfile
Juergen Daubert d110a4b38c glibc: updated to 2.8.
We also don't build the locale data by default anymore.
Added support for /etc/ld.so.conf.d/, which fixes bug #253.
2008-09-16 20:49:18 +02:00

40 lines
1.3 KiB
Plaintext

# 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
name=glibc
version=2.8
release=1
source=(http://crux.nu/files/distfiles/glibc-$version-1.tar.bz2
http://crux.nu/files/distfiles/kernel-headers-2.6.26.tar.bz2
hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
build() {
# install build kernel headers
mkdir $PKG/usr/
cp -r kernel-headers-2.6.26/include $PKG/usr
chown root:root $PKG/usr
mkdir build
cd build
../$name-$version/configure --prefix=/usr \
--libexecdir=/usr/lib \
--with-headers=$PKG/usr/include \
--with-tls \
--enable-kernel=2.6.16 \
--enable-add-ons \
--disable-profile \
--without-gd
make
#make check
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
# conflicts with quota
rm $PKG/usr/include/rpcsvc/{rquota.h,rquota.x}
rm -rf $PKG/usr/share/{info,locale}
}