atanks: moved from romster's repo

This commit is contained in:
Danny Rawlins 2008-03-13 22:08:03 +11:00
parent 0ba74362ee
commit ae0014dacb
3 changed files with 54 additions and 0 deletions

28
atanks/.footprint Normal file
View File

@ -0,0 +1,28 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/atanks
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/atanks.desktop
drwxr-xr-x root/root usr/share/atanks/
-rw-r--r-- root/root usr/share/atanks/Help.pt_BR.txt
-rw-r--r-- root/root usr/share/atanks/Help.txt
-rw-r--r-- root/root usr/share/atanks/button.dat
-rw-r--r-- root/root usr/share/atanks/credits.txt
-rw-r--r-- root/root usr/share/atanks/gloat.pt_BR.txt
-rw-r--r-- root/root usr/share/atanks/gloat.txt
-rw-r--r-- root/root usr/share/atanks/instr.txt
-rw-r--r-- root/root usr/share/atanks/misc.dat
-rw-r--r-- root/root usr/share/atanks/missile.dat
-rw-r--r-- root/root usr/share/atanks/revenge.pt_BR.txt
-rw-r--r-- root/root usr/share/atanks/revenge.txt
-rw-r--r-- root/root usr/share/atanks/sound.dat
-rw-r--r-- root/root usr/share/atanks/stock.dat
-rw-r--r-- root/root usr/share/atanks/suicide.pt_BR.txt
-rw-r--r-- root/root usr/share/atanks/suicide.txt
-rw-r--r-- root/root usr/share/atanks/tank.dat
-rw-r--r-- root/root usr/share/atanks/tankgun.dat
-rw-r--r-- root/root usr/share/atanks/title.dat
-rw-r--r-- root/root usr/share/atanks/weapons.txt
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/atanks.png

1
atanks/.md5sum Normal file
View File

@ -0,0 +1 @@
09d431e55bcc5cac849cff0b8bcc00ff atanks-2.8.tar.gz

25
atanks/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Annihilate the other tanks to earn money, then spend it on bigger and better shields and weapons to wipe out the opposition.
# URL: http://atanks.sourceforge.net/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
# Depends on: allegro
name=atanks
version=2.8
release=1
source=(http://dl.sourceforge.net/sourceforge/atanks/atanks-$version.tar.gz)
build() {
cd atanks
sed -i src/Makefile \
-e '/^FLAGS = /s|-DLINUX -DDATA_DIR=\\".\\"|-DLINUX -DDATA_DIR=\\"/usr/share/atanks\\"|' \
-e '/^CFLAGS += -g.*$/d'
make -C src
install -D -m 0755 atanks $PKG/usr/bin/atanks
install -d $PKG/usr/share/atanks
install -m 0644 *.dat *.txt -t $PKG/usr/share/atanks/
install -D -m 0644 atanks.desktop $PKG/usr/share/applications/atanks.desktop
install -D -m 0644 atanks.png $PKG/usr/share/pixmaps/atanks.png
}