25 lines
748 B
Plaintext
25 lines
748 B
Plaintext
|
# Description: a multi-platform game programming library for C/C++
|
||
|
# URL: http://alleg.sf.net/
|
||
|
# Maintainer: sten, nick dot steeves at shaw dot ca
|
||
|
# Packager:
|
||
|
# Depends on: x11, alsa-lib, arts, esound
|
||
|
|
||
|
# When doing make I set MAKEINFO to be 'true' because then
|
||
|
# the program will run and think it's making info pages, while
|
||
|
# it really just executes exit(0) (or something)
|
||
|
|
||
|
|
||
|
name=allegro
|
||
|
version=4.1.18
|
||
|
release=1
|
||
|
source=("http://dl.sourceforge.net/sourceforge/alleg/allegro-$version.tar.gz")
|
||
|
build () {
|
||
|
cd "allegro-$version"
|
||
|
mkdir -p "$PKG/usr";
|
||
|
./configure --prefix="/usr"
|
||
|
make MAKEINFO="true" prefix="/usr" \
|
||
|
docs lib modules programs
|
||
|
make MAKEINFO="true" prefix="$PKG/usr" \
|
||
|
install-man install-headers install-programs install-lib
|
||
|
}
|