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
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
# Template file for 'nss'
|
|
pkgname=nss
|
|
version=3.12.4
|
|
distfiles="${MOZILLA_SITE}/security/nss/releases/NSS_3_12_4_RTM/src/${pkgname}-${version}.tar.gz"
|
|
build_style=custom-install
|
|
short_desc="Mozilla Network Security Services"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=8202546524c69ce03e1c3ef5e2956b71b8fa0a5bffdf06568597e7c0d1f83bf0
|
|
long_desc="
|
|
Network Security Services (NSS) is a set of libraries designed to support
|
|
cross-platform development of security-enabled server applications.
|
|
Applications built with NSS can support SSL v2 and v3, TLS, PKCS \#5,
|
|
PKCS \#7, PKCS \#11, PKCS \#12, S/MIME, X.509 v3 certificates, and other
|
|
security standards."
|
|
|
|
subpackages="$pkgname-devel"
|
|
Add_dependency run glibc
|
|
Add_dependency run zlib
|
|
Add_dependency full nspr
|
|
Add_dependency full sqlite
|
|
|
|
do_install()
|
|
{
|
|
install -d ${DESTDIR}/usr/include/nss ${DESTDIR}/usr/lib/pkgconfig
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
|
_use64="USE_64=1"
|
|
fi
|
|
for dir in coreconf dbm nss; do
|
|
make -C mozilla/security/${dir} \
|
|
LIBRUNPATH= BUILD_OPT=1 \
|
|
NSS_USE_SYSTEM_SQLITE=1 \
|
|
NSPR_INCLUDE_DIR=/usr/include/nspr \
|
|
NSPR_LIB_DIR=/usr/lib ${_use64} || return 1
|
|
done
|
|
|
|
install -m644 mozilla/dist/public/nss/*.h ${DESTDIR}/usr/include/nss
|
|
install -m755 mozilla/dist/*.OBJ/lib/*.so ${DESTDIR}/usr/lib
|
|
|
|
( echo "Name: NSS"; \
|
|
echo "Description: Mozilla Network Security Services"; \
|
|
echo "Version: ${version}"; \
|
|
echo "Cflags: -I/usr/include/nss"; \
|
|
echo "Libs: -L/usr/lib -lnss3 -lsmime3 -lssl3 -lsoftokn3 -lpthread -ldl"; \
|
|
) >${DESTDIR}/usr/lib/pkgconfig/nss.pc
|
|
chmod 644 ${DESTDIR}/usr/lib/pkgconfig/nss.pc
|
|
}
|