# HG changeset patch # User Hans-G?nter Theisgen # Date 1558357135 -3600 # Node ID 736937940e3c6df8223d4d9c7951ba36eaf7e2e7 # Parent 70356dd15554ab49999e1ce2599aa542b4e777c6 updated nspr and nspr-dev (4.10.8 -> 4.21) diff -r 70356dd15554 -r 736937940e3c nspr-dev/receipt --- a/nspr-dev/receipt Mon May 20 13:44:05 2019 +0100 +++ b/nspr-dev/receipt Mon May 20 13:58:55 2019 +0100 @@ -1,22 +1,25 @@ # SliTaz package receipt. PACKAGE="nspr-dev" -VERSION="4.10.8" +VERSION="4.21" CATEGORY="development" -SHORT_DESC="nspr devel library." +SHORT_DESC="Nspr development files." MAINTAINER="slaxemulator@gmail.com" LICENSE="MPL2" -WANTED="nspr" -WEB_SITE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR" +WEB_SITE="https://developer.mozilla.org/docs/Mozilla/Projects/NSPR" DEPENDS="nspr pkg-config" +WANTED="nspr" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share - cp -a $install/usr/bin/nspr-config $fs/usr/bin/nspr-config + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/aclocal $fs/usr/share + cp -a $install/usr/bin/nspr-config $fs/usr/bin/nspr-config } diff -r 70356dd15554 -r 736937940e3c nspr/receipt --- a/nspr/receipt Mon May 20 13:44:05 2019 +0100 +++ b/nspr/receipt Mon May 20 13:58:55 2019 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="nspr" -VERSION="4.10.8" +VERSION="4.21" CATEGORY="utilities" -SHORT_DESC="Netscape Portable Runtime" +SHORT_DESC="Netscape Portable Runtime." MAINTAINER="rocky@slitaz.org" LICENSE="MPL2" +WEB_SITE="https://developer.mozilla.org/docs/Mozilla/Projects/NSPR" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR" -WGET_URL="http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${VERSION}/src/${TARBALL}" +WGET_URL="https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${VERSION}/src/${TARBALL}" DEPENDS="glibc-base" BUILD_DEPENDS="perl" @@ -17,17 +18,18 @@ compile_rules() { cd $src/nspr - ./configure \ - --prefix=/usr \ - --libdir=/usr/lib \ - --includedir=/usr/include/nspr \ - --enable-optimize \ - --disable-debug \ - --with-mozilla \ - --with-pthreads \ + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib \ + --includedir=/usr/include/nspr \ + --enable-optimize \ + --disable-debug \ + --with-mozilla \ + --with-pthreads \ $([ $(uname -m) = x86_64 ] && echo --enable-64bit) \ $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg.