wok-6.x view vcdimager/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 2a21689b0af7
children 17091bc7c301
line source
1 # SliTaz package receipt
3 PACKAGE="vcdimager"
4 VERSION="2.0.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="vcd tools"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.vcdimager.org/"
11 WGET_URL="ftp://ftp.gnu.org/gnu/vcdimager/$TARBALL"
12 TAGS="multimedia video vcd"
14 DEPENDS="libcdio libxml2 popt"
15 BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }