cruxports/lbreakouthd/Pkgfile

20 lines
662 B
Plaintext
Raw Normal View History

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
2022-02-05 15:39:19 -05:00
release=1
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
2022-02-05 15:39:19 -05:00
./configure --prefix=/usr --localstatedir=/var/tmp --disable-nls
make DESTDIR=$PKG install
2022-12-26 20:49:29 -05:00
sed -i "/^Icon=/s/icons/lbreakouthd/" $PKG/usr/share/applications/lbreakouthd.desktop
2022-02-05 15:39:19 -05:00
rm -rf $PKG/var
}