wok view lsscsi/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 2a5cc8208d36
children c63cfbfd7df6
line source
1 # SliTaz package receipt.
3 PACKAGE="lsscsi"
4 VERSION="0.30"
5 CATEGORY="system-tools"
6 SHORT_DESC="Lists information about SCSI devices."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://sg.danny.cz/scsi/lsscsi.html"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="http://sg.danny.cz/scsi/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
18 make -j 1 &&
19 make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 }