blob: 20d2999807a1a4b30dbf6aa2f70c534e7457a3c2 (
plain)
1 # Description: OpenGL billard game.
2 # URL: http://foobillard.sourceforge.net/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Daniel Walpole, daniel at walpole dot id dot au
5 # Depends on: libpng libsdl freetype xorg-libxaw xorg-libxi
6
7 name=foobillard
8 version=3.0a
9 release=2
10 source=(http://downloads.sourceforge.net/project/$name/FooBillard-Sources/$name-$version.tar.gz
11 foobillard-ttf-$version.patch)
12
13 build() {
14 cd $name-$version
15 patch -p 1 -i ../foobillard-ttf-$version.patch
16 ./configure --prefix=/usr
17 make
18 make DESTDIR=$PKG install
19 }
|