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