core/glibc/Pkgfile
2006-02-23 17:31:48 +00:00

38 lines
1.3 KiB
Plaintext

# Description: The C library used in the GNU system
# URL: http://www.gnu.org/software/libc/
# Maintainer: Per Lidén <per@fukt.bth.se>
name=glibc
version=2.3.6
release=1
source=(http://mirrors.sunsite.dk/gnu/$name/$name-$version.tar.bz2 \
http://ep09.pld-linux.org/~mmazur/linux-libc-headers/linux-libc-headers-2.6.12.0.tar.bz2 \
hosts resolv.conf nsswitch.conf host.conf ld.so.conf \
$name-$version-kernelheaders.patch kd.h)
build() {
mkdir -p $PKG/usr/include
cp -r linux-libc-headers-2.6.12.0/include/linux $PKG/usr/include/linux
cp -r linux-libc-headers-2.6.12.0/include/asm-i386 $PKG/usr/include/asm
patch -d $name-$version -p1 < $name-$version-kernelheaders.patch
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
install -m 644 $SRC/kd.h $PKG/usr/include/sys/kd.h
}