wok view cryptsetup/receipt @ rev 22618

updated cryptsetup and cryptsetup-dev (2.0.0 -> 2.2.2)
author Hans-G?nter Theisgen
date Sun Jan 12 10:56:30 2020 +0100 (2020-01-12)
parents 90fa9751f6a5
children bd6074cbab4c
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptsetup"
4 VERSION="2.2.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="dm-crypt setup tool for encryption of block devices."
7 MAINTAINER="b1+slitaz@nagel.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://gitlab.com/$PACKAGE/$PACKAGE"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.kernel.org/pub/linux/utils/$PACKAGE/v${VERSION%.*}/$TARBALL"
14 DEPENDS="e2fsprogs libdevmapper libgcrypt libjson-c openssl popt"
15 BUILD_DEPENDS="e2fsprogs-dev libdevmapper-dev libgcrypt-dev
16 libjson-c-dev openssl-dev popt-dev util-linux-blkid-dev
17 util-linux-uuid-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }