2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/nspr/build
2022-09-03 15:31:42 +05:30

28 lines
647 B
Bash
Executable File

#!/bin/sh -e
mkdir build
cd build
# ./nspr/pr/include/md/_linux.h tests only __GLIBC__ version
# to detect c-library features, list musl features here for now.
CFLAGS="$CFLAGS -D_PR_POLL_AVAILABLE -D_PR_HAVE_OFF64_T -D_PR_INET6 \
-D_PR_HAVE_INET_NTOP -D_PR_HAVE_GETHOSTBYNAME2 -D_PR_HAVE_GETADDRINFO \
-D_PR_INET6_PROBE" \
../nspr/configure \
--prefix=/usr \
--disable-debug \
--enable-optimize \
--enable-64bit
make
make install
# $1 is never unset
# shellcheck disable=2115
rm -rf \
"$1/usr/lib/"*.a \
"$1/usr/bin/prerr.properties" \
"$1/usr/bin/compile-et.pl" \
"$1/usr/share" \
"$1/usr/include/nspr/md"