core/glibc/Pkgfile
2006-09-24 09:30:49 +00:00

35 lines
1.0 KiB
Plaintext

# Description: The C library used in the GNU system
# URL: http://www.gnu.org/software/libc/
# Maintainer: Per Lidén, core-ports at crux dot nu
name=glibc
version=2.3.6
release=2
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
http://crux.nu/files/dist/kernel-headers-2.6.14-1.tar.bz2 \
hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
build() {
mkdir -p $PKG/usr/include
cp -r kernel-headers/{linux,asm-generic} $PKG/usr/include
cp -r kernel-headers/asm-i386 $PKG/usr/include/asm
mkdir build
cd build
../$name-$version/configure --prefix=/usr \
--libexecdir=/usr/lib \
--with-headers=$PKG/usr/include \
--with-tls \
--enable-kernel=2.6.0 \
--enable-add-ons \
--disable-profile \
--without-gd
make
#make check
make install_root=$PKG install
make install_root=$PKG localedata/install-locales
cp ../{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
rm -rf $PKG/usr/share/locale
}