CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
filesystem: added dhcpcd user
[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
ee936e35
VM
8version=2.28
9release=2
b51aee1c 10source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
ee936e35
VM
11 http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.24.tar.xz \
12 $name-$version-1.patch \
b51aee1c 13 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
34fed911
VM
14
15build() {
736f12d7 16 # install kernel headers
ee936e35 17 cd linux-4.19.24
34fed911
VM
18 make mrproper
19 make ARCH=arm headers_check
20 make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
79da3d52
VM
21 chown root:root $PKG/usr
22
ee936e35 23 patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-1.patch
34fed911 24
736f12d7
VM
25 mkdir $SRC/build
26 cd $SRC/build
e308f0f7 27 ../$name-${version:0:4}/configure --prefix=/usr \
68160bd8 28 --build=arm-unknown-linux-gnueabihf \
34fed911
VM
29 --libexecdir=/usr/lib \
30 --with-headers=$PKG/usr/include \
82220af8 31 --enable-kernel=3.2 \
34fed911 32 --enable-add-ons \
9ab3f81a 33 --enable-static-nss \
79da3d52
VM
34 --enable-stack-protector=strong \
35 --enable-obsolete-rpc \
36 --enable-obsolete-nsl \
34fed911 37 --disable-profile \
9ab3f81a 38 --disable-werror \
0fede0dd
VM
39 --without-gd \
40 --disable-multi-arch
34fed911 41
736f12d7 42 make
e308f0f7 43 #make check
34fed911
VM
44 make install_root=$PKG install
45
9ab3f81a
VM
46 install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc
47 install -d $PKG/var/{db,run}/nscd
48
49 install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
50
79da3d52
VM
51 # install needed headers
52 install -d $PKG/usr/include/rpcsvc
53 install -m 0644 $SRC/$name-${version:0:4}/nis/rpcsvc/yp* $PKG/usr/include/rpcsvc
54
34fed911 55 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
b51aee1c 56 ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h
9ab3f81a 57 install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
736f12d7 58 touch $PKG/etc/ld.so.cache
34fed911 59
736f12d7 60 rm -rf $PKG/usr/share/{info,locale} \
9ab3f81a
VM
61 $PKG/usr/bin/tzselect \
62 $PKG/usr/sbin/z{dump,ic}
79da3d52
VM
63 find $PKG -name "*install.cmd" -delete
64 find $PKG -name ".\install" -delete
34fed911 65}