X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=be01fa8bdbf35a02227e9a66f70095e0f1b2a22f;hb=1bfa7feaf7630eefe916c5a9056c1285b7b1b4f6;hp=beda9e19ad70d23b02f6a69ee15f6e48c57b92fa;hpb=e308f0f7f24c3fa181c7ad170057542860b83ea1;p=ports%2Fcore-arm.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index beda9e1..be01fa8 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,21 +5,22 @@ # Depends on: name=glibc -version=2.24 -release=10 -source=(http://ftpmirror.gnu.org/gnu/glibc/glibc-2.24.tar.xz \ - http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.1.13.tar.xz \ - hosts resolv.conf nsswitch.conf host.conf ld.so.conf \ - glibc-2.24-10.patch) +version=2.32 +release=2 +source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ + http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.24.tar.xz \ + $name-$version-2.patch \ + hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install kernel headers - cd linux-4.1.13 + cd linux-4.19.24 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install + chown root:root $PKG/usr - patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/glibc-2.24-10.patch + patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-2.patch mkdir $SRC/build cd $SRC/build @@ -27,13 +28,14 @@ build() { --build=arm-unknown-linux-gnueabihf \ --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ - --enable-kernel=2.6.25 \ + --enable-kernel=3.2 \ --enable-add-ons \ --enable-static-nss \ + --enable-stack-protector=strong \ --disable-profile \ --disable-werror \ --without-gd \ - --enable-obsolete-rpc + --disable-multi-arch make #make check @@ -45,11 +47,13 @@ build() { install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime - ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h + ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale touch $PKG/etc/ld.so.cache rm -rf $PKG/usr/share/{info,locale} \ $PKG/usr/bin/tzselect \ $PKG/usr/sbin/z{dump,ic} + find $PKG -name "*install.cmd" -delete + find $PKG -name ".\install" -delete }