CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openssl: updated to 1.0.2o
[ports/core-arm64.git] / glibc / Pkgfile
CommitLineData
eb267740
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
3338f6b1 8version=2.24
ad73d1f2
VM
9release=10
10source=(http://ftpmirror.gnu.org/gnu/glibc/glibc-2.24.tar.xz \
11 http://www.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 glibc-2.24-10.patch)
eb267740
VM
14
15build() {
16 # install kernel headers
17 cd linux-4.1.13
18 make mrproper
19 make ARCH=arm64 headers_check
20 make ARCH=arm64 INSTALL_HDR_PATH=$PKG/usr headers_install
21
ad73d1f2
VM
22 patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/glibc-2.24-10.patch
23
eb267740
VM
24 mkdir $SRC/build
25 cd $SRC/build
ad73d1f2 26 ../$name-${version:0:4}/configure --prefix=/usr \
eb267740
VM
27 --build=aarch64-unknown-linux-gnueabi \
28 --libexecdir=/usr/lib \
29 --with-headers=$PKG/usr/include \
30 --enable-kernel=2.6.25 \
31 --enable-add-ons \
32 --enable-static-nss \
33 --disable-profile \
34 --disable-werror \
35 --without-gd \
36 --enable-obsolete-rpc
37
38 make
ad73d1f2 39 #make check
eb267740
VM
40 make install_root=$PKG install
41
42 install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc
43 install -d $PKG/var/{db,run}/nscd
44
45 install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
46
47 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
48 ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h
49 install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
50 touch $PKG/etc/ld.so.cache
51
52 rm -rf $PKG/usr/share/{info,locale} \
53 $PKG/usr/bin/tzselect \
54 $PKG/usr/sbin/z{dump,ic}
55}