wok view aespipe/receipt @ rev 22520

updated audit and audit-dev (2.8.4 -> 2.8.5)
author Hans-G?nter Theisgen
date Thu Jan 02 10:00:30 2020 +0100 (2020-01-02)
parents c576c03cd69c
children 3105f866bc3e
line source
1 # SliTaz package receipt.
3 PACKAGE="aespipe"
4 VERSION="2.4f"
5 CATEGORY="utilities"
6 SHORT_DESC="AES encrypting or decrypting pipe."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://sourceforge.net/projects/loop-aes/"
11 TARBALL="$PACKAGE-v$VERSION.tar.bz2"
12 WGET_URL="${WEB_SITE}files/$PACKAGE/v$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }