You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
459 B
20 lines
459 B
9 years ago
|
name=glibc
|
||
|
version=2.22
|
||
|
enable_check=false
|
||
|
|
||
|
dlextract "https://ftp.gnu.org/gnu/libc/$name-$version.tar.xz" \
|
||
|
"e51e02bf552a0a1fbbdc948fb2f5e83c"
|
||
|
header_end
|
||
|
|
||
|
mkdir "$name-build"; cd "$name-build"
|
||
|
|
||
|
"../$name-$version/configure" --prefix=/usr
|
||
|
make
|
||
|
do_check make check
|
||
|
make DESTDIR="$dir_install" install
|
||
|
|
||
|
# It likes leaving this file here. Something it really shouldn't.
|
||
|
rm "$dir_install/etc/ld.so.cache"
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|