CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
filesystem: add /etc/os-release
[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
5685e009 8version=2.32
40e906df 9release=3
da310f23 10source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
e3864b91 11 http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.24.tar.xz \
40e906df 12 glibc-$version-3.patch \
da310f23 13 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
eb267740
VM
14
15build() {
16 # install kernel headers
e3864b91 17 cd linux-4.19.24
eb267740
VM
18 make mrproper
19 make ARCH=arm64 headers_check
20 make ARCH=arm64 INSTALL_HDR_PATH=$PKG/usr headers_install
6e52ceb9
VM
21 chown root:root $PKG/usr
22
40e906df 23 patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-3.patch
eb267740
VM
24
25 mkdir $SRC/build
26 cd $SRC/build
ad73d1f2 27 ../$name-${version:0:4}/configure --prefix=/usr \
eb267740
VM
28 --libexecdir=/usr/lib \
29 --with-headers=$PKG/usr/include \
30 --enable-kernel=2.6.25 \
31 --enable-add-ons \
32 --enable-static-nss \
6e52ceb9 33 --enable-stack-protector=strong \
eb267740
VM
34 --disable-profile \
35 --disable-werror \
36 --without-gd \
da310f23
VM
37 --enable-obsolete-rpc \
38 --enable-obsolete-nsl
eb267740
VM
39
40 make
ad73d1f2 41 #make check
eb267740
VM
42 make install_root=$PKG install
43
6e52ceb9 44 install -m 0644 $SRC/$name-${version:0:4}/nscd/nscd.conf $PKG/etc
eb267740
VM
45 install -d $PKG/var/{db,run}/nscd
46
47 install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
48
49 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
6e52ceb9 50 ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h
eb267740
VM
51 install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
52 touch $PKG/etc/ld.so.cache
53
54 rm -rf $PKG/usr/share/{info,locale} \
6e52ceb9
VM
55 $PKG/usr/bin/tzselect \
56 $PKG/usr/sbin/z{dump,ic}
57 find $PKG -name "*install.cmd" -delete
58 find $PKG -name ".\install" -delete
eb267740 59}