CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
e37fb7c66de379358dfded502e7bbe62b6f1ec17
[ports/core-arm.git] / glibc / Pkgfile
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
7 name=glibc
8 version=2.22
9 release=1
10 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
11 http://ftp.kernel.org/pub/linux/kernel/v4.x/linux-4.1.13.tar.xz \
12 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
13
14 build() {
15 # install kernel headers
16 cd linux-4.1.13
17 make mrproper
18 make ARCH=arm headers_check
19 make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
20
21 mkdir $SRC/build
22 cd $SRC/build
23 ../$name-$version/configure --prefix=/usr \
24 --build=arm-unknown-linux-gnueabihf \
25 --libexecdir=/usr/lib \
26 --with-headers=$PKG/usr/include \
27 --enable-kernel=2.6.25 \
28 --enable-add-ons \
29 --enable-static-nss \
30 --disable-profile \
31 --disable-werror \
32 --without-gd \
33 --enable-obsolete-rpc
34
35 make
36 make install_root=$PKG install
37
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
43 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
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
46 touch $PKG/etc/ld.so.cache
47
48 rm -rf $PKG/usr/share/{info,locale} \
49 $PKG/usr/bin/tzselect \
50 $PKG/usr/sbin/z{dump,ic}
51 }