contrib/abe/Pkgfile

26 lines
757 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: A fun platform game exploring a pyramid.
# URL: http://abe.sourceforge.net
2007-01-20 03:21:06 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
2006-11-13 21:38:26 +01:00
#
2006-11-19 22:26:53 +01:00
# Depends on: sdl_mixer
2006-11-13 21:38:26 +01:00
name=abe
version=1.1
release=2
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build () {
2006-11-19 22:26:53 +01:00
cd $name-$version
2006-11-13 21:38:26 +01:00
2006-11-19 22:26:53 +01:00
./configure \
--prefix=$PKG/usr \
--with-data-dir=/usr/share/abe
2006-11-13 21:38:26 +01:00
2006-11-19 22:26:53 +01:00
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/
2006-11-13 21:38:26 +01:00
}