wok-6.x view xwax/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
children d7bacc22f5eb
line source
1 # SliTaz package receipt.
3 PACKAGE="xwax"
4 VERSION="1.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="An open-source Digital Vinyl System (DVS) for Linux"
7 MAINTAINER="Lucas Levrel <llev@slitaz.org>"
8 LICENSE="GPL2"
9 WEB_SITE="http://xwax.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/releases/$TARBALL"
13 DEPENDS="libsdl libsdl-ttf alsa-lib"
14 BUILD_DEPENDS="libsdl-dev libsdl-ttf-dev alsa-lib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS --enable-alsa --prefix /usr && \
20 LDFLAGS=-Os make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/* $fs
27 }