mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 08:03:51 +02:00
nspr: cross buid support.
This commit is contained in:
parent
ec6acaa14a
commit
9f9543f617
1 changed files with 14 additions and 10 deletions
|
@ -1,11 +1,9 @@
|
||||||
# Template file for 'nspr'
|
# Template file for 'nspr'
|
||||||
pkgname=nspr
|
pkgname=nspr
|
||||||
version=4.10.2
|
version=4.10.2
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
build_wrksrc="nspr"
|
build_wrksrc="nspr"
|
||||||
configure_args="--libdir=/usr/lib --includedir=/usr/include/nspr
|
|
||||||
--enable-optimize --disable-debug --with-pthreads"
|
|
||||||
makedepends="zlib-devel"
|
makedepends="zlib-devel"
|
||||||
short_desc="NetScape Portable Runtime"
|
short_desc="NetScape Portable Runtime"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
@ -13,15 +11,21 @@ homepage="http://www.mozilla.org/projects/nspr/"
|
||||||
license="GPL-2, MPL-1.1"
|
license="GPL-2, MPL-1.1"
|
||||||
distfiles="${MOZILLA_SITE}/nspr/releases/v${version}/src/${pkgname}-${version}.tar.gz"
|
distfiles="${MOZILLA_SITE}/nspr/releases/v${version}/src/${pkgname}-${version}.tar.gz"
|
||||||
checksum=4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400
|
checksum=4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400
|
||||||
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."
|
|
||||||
|
|
||||||
if [ "$XBPS_MACHINE" = "x86_64" ]; then
|
do_configure() {
|
||||||
configure_args+=" --enable-64bit"
|
if [ "$CROSS_BUILD" ]; then
|
||||||
|
_args+=" --target=$XBPS_CROSS_TRIPLET"
|
||||||
|
fi
|
||||||
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
||||||
|
_args+=" --enable-64bit"
|
||||||
|
fi
|
||||||
|
|
||||||
|
unset CFLAGS
|
||||||
|
./configure --prefix=/usr --libdir=/usr/lib \
|
||||||
|
--includedir=/usr/include/nspr --enable-optimize \
|
||||||
|
--disable-debug --with-pthreads ${_args}
|
||||||
|
}
|
||||||
|
|
||||||
fi
|
|
||||||
post_install() {
|
post_install() {
|
||||||
ln -s nspr.pc ${DESTDIR}/usr/lib/pkgconfig/mozilla-nspr.pc
|
ln -s nspr.pc ${DESTDIR}/usr/lib/pkgconfig/mozilla-nspr.pc
|
||||||
rm -r ${DESTDIR}/usr/bin/{compile-et.pl,prerr.properties} \
|
rm -r ${DESTDIR}/usr/bin/{compile-et.pl,prerr.properties} \
|
||||||
|
|
Loading…
Add table
Reference in a new issue