CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
util-linux; updated to 2.31.1
[ports/core-arm.git] / glibc / Pkgfile
CommitLineData
34fed911
VM
1# Description: The C library used in the GNU system
2# URL: http://www.gnu.org/software/libc/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on:
6
7name=glibc
2d94aa23 8version=2.24
51db6920 9release=3
34fed911 10source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
9ab3f81a 11 http://ftp.kernel.org/pub/linux/kernel/v4.x/linux-4.1.13.tar.xz \
d6e43ba0 12 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
34fed911
VM
13
14build() {
736f12d7 15 # install kernel headers
9ab3f81a 16 cd linux-4.1.13
34fed911
VM
17 make mrproper
18 make ARCH=arm headers_check
19 make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
20
736f12d7
VM
21 mkdir $SRC/build
22 cd $SRC/build
34fed911 23 ../$name-$version/configure --prefix=/usr \
68160bd8 24 --build=arm-unknown-linux-gnueabihf \
34fed911
VM
25 --libexecdir=/usr/lib \
26 --with-headers=$PKG/usr/include \
736f12d7 27 --enable-kernel=2.6.25 \
34fed911 28 --enable-add-ons \
9ab3f81a 29 --enable-static-nss \
34fed911 30 --disable-profile \
9ab3f81a 31 --disable-werror \
34fed911 32 --without-gd \
736f12d7 33 --enable-obsolete-rpc
34fed911 34
736f12d7 35 make
34fed911
VM
36 make install_root=$PKG install
37
9ab3f81a
VM
38 install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc
39 install -d $PKG/var/{db,run}/nscd
40
41 install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
42
34fed911 43 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
9ab3f81a
VM
44 ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h
45 install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
736f12d7 46 touch $PKG/etc/ld.so.cache
34fed911 47
736f12d7 48 rm -rf $PKG/usr/share/{info,locale} \
9ab3f81a
VM
49 $PKG/usr/bin/tzselect \
50 $PKG/usr/sbin/z{dump,ic}
34fed911 51}