void-packages/srcpkgs/nspr/template

46 lines
1.6 KiB
Plaintext
Raw Normal View History

# Template file for 'nspr'
pkgname=nspr
2012-11-28 17:32:50 +00:00
version=4.9.4
revision=1
build_style=gnu-configure
configure_script="./mozilla/nsprpub/configure"
if [ "$XBPS_MACHINE" = "x86_64" ]; then
_for64="--enable-64bit"
fi
configure_args="--libdir=/usr/lib --includedir=/usr/include/nspr
2012-09-18 07:38:58 +00:00
--enable-optimize --disable-debug --with-pthreads ${_for64}"
2012-06-18 06:41:04 +00:00
subpackages="$pkgname-devel"
short_desc="NetScape Portable Runtime"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-05-28 11:34:12 +00:00
homepage="http://www.mozilla.org/projects/nspr/"
license="GPL-2, MPL-1.1"
2012-06-18 06:41:04 +00:00
distfiles="${MOZILLA_SITE}/nspr/releases/v${version}/src/${pkgname}-${version}.tar.gz"
2012-11-28 17:32:50 +00:00
checksum=749046c75be17f2f8b3874d288873d3355cedcb37abe7b6eb7b3bc374440d4a4
long_desc="
Netscape Portable Runtime (NSPR) provides a platform-neutral API for system
level and libc like functions. The API is used in the Mozilla client, many of
Netscape/AOL/iPlanet's and other software offerings."
2012-03-14 22:02:25 +00:00
post_install() {
local nspr_config="${DESTDIR}/usr/bin/nspr-config"
local pcver="$(${nspr_config} --version)"
rm -rf ${DESTDIR}/usr/include/nspr/md ${DESTDIR}/usr/share
rm -f ${DESTDIR}/usr/bin/prerr.* ${DESTDIR}/usr/bin/compile-et.pl
# Install the pkgconfig file.
install -d ${DESTDIR}/usr/lib/pkgconfig
( echo "Name: NSPR"; \
echo "Description: The Netscape Portable Runtime"; \
echo "Version: ${pcver}"; \
echo "Cflags: -I/usr/include/nspr"; \
echo "Libs: -L/usr/lib -lplds4 -lplc4 -lnspr4 -lpthread -ldl"; \
) >${DESTDIR}/usr/lib/pkgconfig/nspr.pc
2011-01-16 00:00:42 +00:00
chmod 644 ${DESTDIR}/usr/lib/pkgconfig/nspr.pc
cd ${DESTDIR}/usr/lib/pkgconfig && \
2012-09-18 07:38:58 +00:00
ln -s nspr.pc mozilla-nspr.pc
2012-10-29 15:11:40 +00:00
# Remove static libs.
rm -f ${DESTDIR}/usr/lib/*.a
}