wok view btanks/receipt @ rev 14792

Fix ownership and permissions for some files in some packages (again): adeskbar, arora, attr, binutils, bootchart, btanks.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 08 17:09:45 2013 +0300 (2013-07-08)
parents a7b54d88ae54
children 223b265f40fd
line source
1 # SliTaz package receipt.
3 PACKAGE="btanks"
4 VERSION="0.9.8083"
5 CATEGORY="games"
6 SHORT_DESC="A fast 2d tank arcade game with multiplayer and split-screen modes."
7 MAINTAINER="slaxemulator@gmail.com"
8 WEB_SITE="http://btanks.sourceforge.net/"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="expat mesa libsigc++ libvorbis lua5.1 openal libsdl libsdl-image libsmpeg"
13 BUILD_DEPENDS="expat-dev mesa-dev libsigc++-dev libvorbis libvorbis-dev libogg \
14 libogg-dev lua5.1-dev openal-dev libsdl-dev libsdl-image-dev libsmpeg-dev scons \
15 chrpath pkg-config libsmpeg-dev lua5.1"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 sed -i 's/#define *NULL.*/#define NULL 0/g' engine/sl08/sl08.h
22 scons
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p \
29 $fs/usr/bin \
30 $fs/usr/lib/btanks \
31 $fs/usr/share/applications \
32 $fs/usr/share/btanks
34 # libs
35 cp -a $src/*.so $fs/usr/lib/btanks
37 ls -1 $fs/usr/lib/btanks/ | while read A; do
38 ln -s /usr/lib/btanks/$A $fs/usr/share/btanks/$A || return 1
39 done
41 # executables & wrappers
42 cp -a $src/btanks $fs/usr/bin/btanks-bin
43 cp -a $src/bted $fs/usr/bin/bted-bin
45 cp -a $stuff/btanks_script $fs/usr/bin/btanks
46 cp -a $stuff/bted_script $fs/usr/bin/bted
47 chmod +x $fs/usr/bin/btanks
48 chmod +x $fs/usr/bin/bted
50 ln -s /usr/bin/btanks-bin $fs/usr/share/btanks/btanks && \
51 ln -s /usr/bin/bted-bin $fs/usr/share/btanks/bted || return 1
53 # game data
54 cp -a $src/data $fs/usr/share/btanks
55 chown -R root:root $fs
56 chmod a-x $fs/usr/share/btanks/data/sounds/boomerang-missile.ogg
58 # make settings saveable
59 SETTINGS=$fs/usr/share/btanks/bt.xml
60 touch $SETTINGS
61 chgrp 100 $SETTINGS
62 chmod 664 $SETTINGS
63 }