wok view npth/receipt @ rev 21620

linld: more ram for zImage
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 25 13:19:35 2019 +0200 (2019-05-25)
parents b3340c8e1ed1
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="npth"
4 VERSION="1.6"
5 CATEGORY="security"
6 SHORT_DESC="The new GNU portable threads library."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2 LGPL3"
9 WEB_SITE="https://www.gnupg.org/software/npth/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/$PACKAGE/$TARBALL"
14 DEPENDS="glibc-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Integrity check: https://www.gnupg.org/download/integrity_check.html
20 echo "f9d63e9747b027e4e404fe3c20c73c73719e1731 $SRC/$TARBALL" | sha1sum -c || exit 1
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }