wok-6.x annotate pingus/receipt @ rev 21975
updated st (0.5 -> 0.8.2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 11 14:31:25 2019 +0100 (2019-10-11) |
parents | 380ffe05937a |
children | a3c45ab9082e |
rev | line source |
---|---|
pascal@1136 | 1 # SliTaz package receipt. |
pascal@1136 | 2 |
pascal@1136 | 3 # FIXME : Check if the tarball comes with a .desktop and a pixmap files |
pascal@1136 | 4 # Then remove the section in genpkg_rules() that creates them |
pascal@1136 | 5 |
pascal@1136 | 6 PACKAGE="pingus" |
slaxemulator@7515 | 7 VERSION="0.7.3" |
pascal@1136 | 8 CATEGORY="games" |
pascal@1136 | 9 SHORT_DESC="Pingus is a free Lemmings-like game." |
pascal@1136 | 10 MAINTAINER="chadi.elahmad@gmail.com" |
pascal@15000 | 11 LICENSE="GPL2" |
pascal@1136 | 12 |
pascal@1136 | 13 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@20679 | 14 WEB_SITE="https://pingus.seul.org/" |
pascal@1136 | 15 WGET_URL="http://pingus.seul.org/files/$TARBALL" |
pascal@1136 | 16 |
pankso@3425 | 17 DEPENDS="libsdl libsdl-image libsdl-mixer |
pascal@5005 | 18 libboost-signals gcc-lib-base" |
pascal@1136 | 19 |
pascal@1136 | 20 BUILD_DEPENDS="scons |
pankso@3425 | 21 libsdl-dev libsdl-image-dev libsdl-mixer-dev |
pascal@1136 | 22 libboost-dev libboost-signals-dev " |
pascal@1136 | 23 |
pascal@1136 | 24 # Rules to configure and make the package. |
pascal@1136 | 25 compile_rules() |
pascal@1136 | 26 { |
pascal@1136 | 27 cd $src |
pascal@1136 | 28 scons |
pascal@1136 | 29 } |
pascal@1136 | 30 |
pascal@1136 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1136 | 32 genpkg_rules() |
pascal@1136 | 33 { |
pankso@10839 | 34 mkdir -p $fs/usr/bin $fs/usr/share/pingus |
pankso@10839 | 35 cp -a $src/pingus $fs/usr/bin |
pankso@10839 | 36 cp -a $src/data $fs/usr/share/pingus |
pascal@1136 | 37 |
pascal@1136 | 38 # the tarball doesn't contain any .desktop file, nor a pixmap |
pascal@1136 | 39 # let's create them |
pankso@10839 | 40 mkdir -p $fs/usr/share/pixmaps |
pankso@10839 | 41 mkdir -p $fs/usr/share/applications |
pankso@10839 | 42 cp -a $src/data/images/core/editor/actions.png \ |
pankso@10839 | 43 $fs/usr/share/pixmaps/pingus.png |
pankso@10839 | 44 cat > $fs/usr/share/applications/pingus.desktop <<EOF |
pascal@1136 | 45 [Desktop Entry] |
pascal@1136 | 46 Name=Pingus |
pascal@1136 | 47 Exec=pingus -w |
pascal@1136 | 48 Type=Application |
pascal@1136 | 49 Categories=Application;Game; |
pascal@1136 | 50 Icon=pingus |
pascal@1136 | 51 EOF |
pascal@1136 | 52 } |