wok annotate aespipe/receipt @ rev 21619

gcc83-lib-base: revert to gcc-lib-base post install
Previous post-install rules don't work for me producing error:
error: C compiler cannot create executables
on the another plain build when I previously used gcc83 & gcc83-lib-base to compile my other package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 25 14:09:45 2019 +0300 (2019-05-25)
parents 11b5e93cb5f2
children 5f98309efad4
rev   line source
pascal@17334 1 # SliTaz package receipt.
pascal@17334 2
pascal@17334 3 PACKAGE="aespipe"
Hans-G?nter@20699 4 VERSION="2.4e"
pascal@17334 5 CATEGORY="utilities"
pascal@17334 6 SHORT_DESC="AES encrypting or decrypting pipe."
pascal@17334 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17335 8 LICENSE="GPL"
al@19275 9 WEB_SITE="http://loop-aes.sourceforge.net/aespipe.README"
Hans-G?nter@20699 10 TARBALL="$PACKAGE-v$VERSION.tar.bz2"
pascal@17334 11 WGET_URL="http://loop-aes.sourceforge.net/aespipe/$TARBALL"
pascal@17334 12
pascal@17334 13 # Rules to configure and make the package.
pascal@17334 14 compile_rules()
pascal@17334 15 {
pascal@17334 16 ./configure --prefix=/usr \
pascal@17334 17 $CONFIGURE_ARGS &&
pascal@17334 18 make &&
pascal@17334 19 make DESTDIR=$DESTDIR install
pascal@17334 20 }
pascal@17334 21
pascal@17334 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17334 23 genpkg_rules()
pascal@17334 24 {
pascal@17334 25 mkdir -p $fs/usr
pascal@17334 26 cp -a $install/usr/bin $fs/usr
pascal@17334 27 }