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
|
2022-12-23 08:52:13 -05:00
|
|
|
version=1.1
|
2023-01-25 08:30:32 -05:00
|
|
|
release=2
|
2022-02-05 15:39:19 -05:00
|
|
|
source=(https://downloads.sourceforge.net/project/lgames/$name/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$name-$version"
|
|
|
|
|
2022-12-26 20:49:29 -05:00
|
|
|
sed -i "/^icondir =/s/icons/lbreakouthd/" Makefile.in
|
2023-01-25 08:30:32 -05:00
|
|
|
./configure --disable-nls \
|
|
|
|
--prefix=/usr \
|
|
|
|
--localstatedir=/var/lib/games
|
2022-02-05 15:39:19 -05:00
|
|
|
make DESTDIR=$PKG install
|
2022-12-26 20:49:29 -05:00
|
|
|
sed -i "/^Icon=/s/icons/lbreakouthd/" $PKG/usr/share/applications/lbreakouthd.desktop
|
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
|
|
|
}
|