85cc462e1d
* Moved helpers, common and triggers dirs into xbps-src, where they belong. * Renamed the templates dir to srcpkgs, it was so redundant before. * Make it possible to add subpkgs with no restriction in names, for example udev now has a subpkgs called "libgudev". Previously subpkgs were named "${sourcepkg}-${pkgname}". * xbps-src: changed to look for template files in current directory. That means that most arguments from the targets have been removed. * xbps-src: added a reinstall target, to remove + install. * xbps-src: do not overwrite binpkgs by default, skip them. And more that I forgot because it's a mega-commit that I've been working for some days already... --HG-- extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
# Template file for 'nspr'
|
|
pkgname=nspr
|
|
version=4.8.2
|
|
distfiles="${MOZILLA_SITE}/nspr/releases/v${version}/src/${pkgname}-${version}.tar.gz"
|
|
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
|
|
--enable-optimize --disable-debug --with-pthreads ${_for64}"
|
|
short_desc="NetScape Portable Runtime"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=23ec182a42eec4b6df01f3c02c632ed9f7e004d6c320d048d5fe24054d319bce
|
|
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."
|
|
|
|
subpackages="$pkgname-devel"
|
|
Add_dependency run glibc
|
|
|
|
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
|
|
chmod 645 ${DESTDIR}/usr/lib/pkgconfig/nspr.pc
|
|
}
|