wok view libsodium/receipt @ rev 21877

Add libsodium & python-pynacl
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 28 18:18:15 2019 +0200 (2019-09-28)
parents
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libsodium"
4 VERSION="1.0.18"
5 CATEGORY="security"
6 SHORT_DESC="Network communication, cryptography and signaturing library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.libsodium.org/"
11 WGET_URL="https://download.libsodium.org/libsodium/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure --prefix=/usr \
17 $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }