wok-next annotate luksus/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
rev   line source
pascal@16796 1 # SliTaz package receipt.
pascal@16796 2
pascal@16796 3 PACKAGE="luksus"
pascal@16796 4 VERSION="1.6"
pascal@16796 5 CATEGORY="system-tools"
al@21020 6 SHORT_DESC="Command line encryption management tool"
pascal@16796 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16796 8 LICENSE="GPL2"
al@21032 9 WEB_SITE="https://github.com/partoneoftwo/luksus"
al@21020 10
pascal@16796 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16796 12 WGET_URL="https://github.com/thomasfrivold/luksus/archive/v$VERSION.tar.gz"
pascal@16796 13
al@21020 14 genpkg_rules() {
pascal@16796 15 mkdir -p $fs/usr/bin $fs/usr/share/luksus
pascal@16796 16 cp -a $src/LUKSUS* $fs/usr/share/luksus
pascal@16796 17 cat > $fs/usr/bin/luksus <<EOT
pascal@16796 18 #!/bin/sh
pascal@16796 19
pascal@16796 20 cd /usr/share/luksus
pascal@16796 21 exec ./LUKSUS "$@"
pascal@16796 22 EOT
pascal@16796 23 chmod 755 $fs/usr/bin/luksus
al@21020 24 DEPENDS="bash dialog cryptsetup tcplay gnupg openssl"
pascal@16796 25 }