wok view assaultcube/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents d37d15244372
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
3 PACKAGE="assaultcube"
4 VERSION="1.1.0.4"
5 CATEGORY="games"
6 SHORT_DESC="A realistic team oriented multiplayer FPS based on the cube engine."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="zlib/libpng"
9 SOURCE="AssaultCube"
10 TARBALL="${SOURCE}_v${VERSION}_source.tar.bz2"
11 SOURCE="AssaultCube-Source"
12 WEB_SITE="https://assault.cubers.net/"
13 WGET_URL="$SF_MIRROR/actiongame/$TARBALL"
15 DEPENDS="openal libsdl-image libsdl-mixer mesa libglu-mesa assaultcube-data"
16 BUILD_DEPENDS="openal-dev libsdl-image-dev libsdl-mixer-dev mesa-dev \
17 libglu-mesa-dev file"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src/source/src
23 sed -i 's/lvorbisfile/& -lX11/' Makefile
24 make
25 mkdir -p $DESTDIR/usr/bin
26 cp -a ac_client $DESTDIR/usr/bin
27 cp -a ac_server $DESTDIR/usr/bin
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/bin
35 cp -a $install/usr/bin/ac_client $fs/usr/bin
36 cp -a $install/usr/bin/ac_server $fs/usr/bin
37 cp -a $stuff/assaultcube $fs/usr/bin
38 cp -a $stuff/assaultcube-server $fs/usr/bin
39 chmod +x $fs/usr/bin/assaultcube
40 chmod +x $fs/usr/bin/assaultcube-server
41 }