wok view libksba/receipt @ rev 20135

linux64: update modules64.list
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 28 23:19:52 2017 +0200 (2017-10-28)
parents 8f447cf2eee5
children 37cd8bfbd908
line source
1 # SliTaz package receipt.
3 PACKAGE="libksba"
4 VERSION="1.3.4"
5 CATEGORY="security"
6 SHORT_DESC="Library to work with X.509 certificates, CMS data and related objects."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnupg.org/related_software/libksba/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="https://www.gnupg.org/ftp/gcrypt/libksba/$TARBALL"
13 DEPENDS="libgpg-error"
14 BUILD_DEPENDS="libgpg-error-dev"
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 "bc84945400bd1cabfd7b8ba4e20e71082f32bcc9 $SRC/$TARBALL" | sha1sum -c || exit 1
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }