void-packages/srcpkgs/nspr/template
Đoàn Trần Công Danh 6777e34c5c nspr: update to 4.30.
2021-03-24 08:06:15 +07:00

54 lines
1.5 KiB
Bash

# Template file for 'nspr'
pkgname=nspr
version=4.30
revision=1
build_wrksrc=nspr
build_style=gnu-configure
makedepends="zlib-devel"
short_desc="NetScape Portable Runtime"
maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
license="MPL-2.0"
homepage="http://www.mozilla.org/projects/nspr/"
distfiles="${MOZILLA_SITE}/nspr/releases/v${version}/src/${pkgname}-${version}.tar.gz"
checksum=8d4cd8f8409484dc4c3d31e180354bfc506573eccf86cd691106a1ef7edc913b
do_configure() {
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"
if [ "$CROSS_BUILD" ]; then
_args+=" --target=$XBPS_CROSS_TRIPLET"
fi
case "$XBPS_TARGET_MACHINE" in
x86_64*|ppc64*|aarch64*) _args+=" --enable-64bit";;
esac
./configure --build=${XBPS_TRIPLET} --prefix=/usr --libdir=/usr/lib \
--includedir=/usr/include/nspr --enable-optimize \
--enable-debug --enable-ipv6 ${_args}
}
do_build() {
if [ "$CROSS_BUILD" ]; then
make ${makejobs}
else
make CC=$CC CXX=$CXX ${makejobs}
fi
}
post_install() {
sed -i "s|\(-specs=.*hardened-ld\)||g" ${DESTDIR}/usr/bin/nspr-config
ln -s nspr.pc ${DESTDIR}/usr/lib/pkgconfig/mozilla-nspr.pc
rm -r ${DESTDIR}/usr/bin/{compile-et.pl,prerr.properties} \
${DESTDIR}/usr/include/nspr/md
}
nspr-devel_package() {
depends="nspr>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/bin
vmove usr/lib/pkgconfig
vmove usr/share/aclocal
vmove "usr/lib/*.a"
}
}