wok view npth/receipt @ rev 21553

syslinux/iso2exe,taziso: add slitaz.pif
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 10 19:27:17 2019 +0200 (2019-05-10)
parents ac006a7bf27c
children 70356dd15554
line source
1 # SliTaz package receipt.
3 PACKAGE="npth"
4 VERSION="1.5"
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/related_software/npth/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/npth/$TARBALL"
13 DEPENDS="glibc-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 # Integrity check: https://www.gnupg.org/download/integrity_check.html
19 echo "93ddf1a3bdbca00fb4cf811498094ca61bbb8ee1 $SRC/$TARBALL" | sha1sum -c || exit 1
21 ./configure $CONFIGURE_ARGS && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }