wok annotate npth/receipt @ rev 21616
lucene++ : patch
author | maniac |
---|---|
date | Thu May 23 22:39:27 2019 +0300 (2019-05-23) |
parents | b3340c8e1ed1 |
children | 241fb98cab1c |
rev | line source |
---|---|
al@19226 | 1 # SliTaz package receipt. |
al@19226 | 2 |
al@19226 | 3 PACKAGE="npth" |
Hans-G?nter@21585 | 4 VERSION="1.6" |
al@19226 | 5 CATEGORY="security" |
Hans-G?nter@21585 | 6 SHORT_DESC="The new GNU portable threads library." |
al@19226 | 7 MAINTAINER="al.bobylev@gmail.com" |
al@19226 | 8 LICENSE="GPL2 LGPL3" |
Hans-G?nter@21585 | 9 WEB_SITE="https://www.gnupg.org/software/npth/" |
Hans-G?nter@21585 | 10 |
al@19226 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
Hans-G?nter@21585 | 12 WGET_URL="https://www.gnupg.org/ftp/gcrypt/$PACKAGE/$TARBALL" |
al@19226 | 13 |
al@19226 | 14 DEPENDS="glibc-base" |
al@19226 | 15 |
al@19226 | 16 # Rules to configure and make the package. |
al@19226 | 17 compile_rules() |
al@19226 | 18 { |
al@19226 | 19 # Integrity check: https://www.gnupg.org/download/integrity_check.html |
Hans-G?nter@21585 | 20 echo "f9d63e9747b027e4e404fe3c20c73c73719e1731 $SRC/$TARBALL" | sha1sum -c || exit 1 |
al@19226 | 21 |
Hans-G?nter@21585 | 22 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@21585 | 23 make && |
Hans-G?nter@21585 | 24 make install |
al@19226 | 25 } |
al@19226 | 26 |
al@19226 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@19226 | 28 genpkg_rules() |
al@19226 | 29 { |
al@19226 | 30 mkdir -p $fs/usr/lib |
al@19226 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
al@19226 | 32 } |