blob: a247ea58514aded9a05aca6fca8cc735a6930412 (
plain)
1 # Description: Annihilate the other tanks to earn money, then spend it on bigger and better shields and weapons to wipe out the opposition.
2 # URL: https://atanks.sourceforge.io/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: allegro4
5
6 name=atanks
7 version=6.6
8 release=1
9 source=(https://downloads.sourceforge.net/project/$name/$name/$name-$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 sed -i -e 's|share/games/atanks|share/atanks|' Makefile
15
16 make
17 make DESTDIR=$PKG INSTALL="install -c" install
18
19 sed -i 's/^Name=atanks/Name=Atomic Tanks/' atanks.desktop
20 sed -i 's/^Categories=Game;/Categories=Game;StrategyGame;/' atanks.desktop
21
22 install -Dm644 atanks.desktop $PKG/usr/share/applications/atanks.desktop
23 install -Dm644 atanks.png $PKG/usr/share/pixmaps/atanks.png
24
25 rm $PKG/usr/share/atanks/{COPYING,Changelog,README,README_ru.txt,TODO}
26 }
|