abe: Initial commit

This commit is contained in:
James Mills 2006-11-14 06:38:26 +10:00
parent 43794db114
commit 727636db15
3 changed files with 51 additions and 0 deletions

24
abe/.footprint Normal file
View File

@ -0,0 +1,24 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/abe
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/abe/
drwxr-xr-x root/root usr/share/abe/images/
-rw-r--r-- root/root usr/share/abe/images/images.tar
drwxr-xr-x root/root usr/share/abe/maps/
-rw-r--r-- root/root usr/share/abe/maps/default.dat
-rw-r--r-- root/root usr/share/abe/maps/intro.dat
drwxr-xr-x root/root usr/share/abe/sounds/
-rw-r--r-- root/root usr/share/abe/sounds/bubble.wav
-rw-r--r-- root/root usr/share/abe/sounds/closed.wav
-rw-r--r-- root/root usr/share/abe/sounds/death.wav
-rw-r--r-- root/root usr/share/abe/sounds/door.wav
-rw-r--r-- root/root usr/share/abe/sounds/game.ogg
-rw-r--r-- root/root usr/share/abe/sounds/gem.wav
-rw-r--r-- root/root usr/share/abe/sounds/intro.ogg
-rw-r--r-- root/root usr/share/abe/sounds/jump.wav
-rw-r--r-- root/root usr/share/abe/sounds/menu.wav
-rw-r--r-- root/root usr/share/abe/sounds/object.wav
-rw-r--r-- root/root usr/share/abe/sounds/platform.wav
-rw-r--r-- root/root usr/share/abe/sounds/pop.wav
-rw-r--r-- root/root usr/share/abe/sounds/spring.wav

1
abe/.md5sum Normal file
View File

@ -0,0 +1 @@
5537920e1746708e1a631d84d3500f5c abe-1.1.tar.gz

26
abe/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# $Id: Pkgfile 1328 2006-11-13 20:18:54Z prologic $
# Description: A fun platform game exploring a pyramid.
# URL: http://abe.sourceforge.net
# Packager: James Mills prologic at shortcircuit dot net dot au
# Maintainer: James Mills prologic at shortcircuit dot net dot au
#
# Depends on: sdl_mixer
name=abe
version=1.1
release=2
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build () {
cd $name-$version
./configure \
--prefix=$PKG/usr \
--with-data-dir=/usr/share/abe
install -d $PKG/usr/{bin,share/$name/{images,sounds,maps}}
make && make prefix=$PKG/usr install
install -m644 images/* -t $PKG/usr/share/$name/images/
install -m644 sounds/* -t $PKG/usr/share/$name/sounds/
install -m644 maps/* -t $PKG/usr/share/$name/maps/
}