2022-02-05 15:39:19 -05:00
|
|
|
# Description: game where you must aim a bouncing ball to clear a field of bricks
|
|
|
|
# URL: http://lgames.sourceforge.net/LBreakoutHD/
|
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2022-04-26 07:51:12 -04:00
|
|
|
# Depends on: sdl2_image sdl2_mixer sdl2_ttf
|
2022-02-05 15:39:19 -05:00
|
|
|
|
|
|
|
name=lbreakouthd
|
2023-05-22 07:36:52 -04:00
|
|
|
version=1.1.3
|
2023-02-24 08:54:02 -05:00
|
|
|
release=1
|
2022-02-05 15:39:19 -05:00
|
|
|
source=(https://downloads.sourceforge.net/project/lgames/$name/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$name-$version"
|
|
|
|
|
2023-01-25 08:30:32 -05:00
|
|
|
./configure --disable-nls \
|
|
|
|
--prefix=/usr \
|
|
|
|
--localstatedir=/var/lib/games
|
2023-04-15 15:43:20 -04:00
|
|
|
|
2022-02-05 15:39:19 -05:00
|
|
|
make DESTDIR=$PKG install
|
2023-01-25 08:30:32 -05:00
|
|
|
rm -f $PKG/var/lib/games/lbreakouthd.hscr
|
|
|
|
chmod 1777 $PKG/var/lib/games
|
2022-02-05 15:39:19 -05:00
|
|
|
}
|