contrib/abe/Pkgfile

33 lines
821 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: A fun platform game exploring a pyramid.
2008-03-16 15:23:00 +01:00
# URL: http://abe.sourceforge.net/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2008-03-16 15:23:00 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2008-12-20 06:31:27 +01:00
# Depends on: sdl_mixer xorg-libxi xorg-libxmu
2006-11-13 21:38:26 +01:00
name=abe
version=1.1
release=2
source=(http://downloads.sourceforge.net/sourceforge/abe/abe-$version.tar.gz)
2006-11-13 21:38:26 +01:00
2008-03-16 15:23:00 +01:00
build() {
cd abe-$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
2008-03-16 15:23:00 +01:00
install -d \
$PKG/usr/bin \
$PKG/usr/share/abe/images \
$PKG/usr/share/abe/sounds \
$PKG/usr/share/abe/maps
make
make prefix=$PKG/usr install
install -m 0644 -t $PKG/usr/share/abe/images/ images/*
install -m 0644 -t $PKG/usr/share/abe/sounds/ sounds/*
install -m 0644 -t $PKG/usr/share/abe/maps/ maps/*
2006-11-13 21:38:26 +01:00
}
2008-03-16 15:23:00 +01:00