cruxports/ltris/Pkgfile

25 lines
645 B
Plaintext
Raw Normal View History

2023-01-25 13:39:12 +00:00
# Description: the classic game with falling tetrominoes
# URL: https://lgames.sourceforge.io/LTris/
# Maintainer: John McQuah, jmcquah at disroot dot org
2023-01-25 15:08:02 +00:00
# Depends on: sdl_mixer xorg-server
2023-01-25 13:39:12 +00:00
name=ltris
2024-04-09 18:47:59 +00:00
version=1.3
2023-01-25 13:39:12 +00:00
release=1
2023-09-08 23:53:44 +00:00
source=(http://prdownloads.sourceforge.net/lgames/$name-$version.tar.gz)
2023-01-25 13:39:12 +00:00
build() {
2024-04-09 18:47:59 +00:00
cd $name-$version
2023-01-25 13:39:12 +00:00
2024-04-09 18:47:59 +00:00
./configure --disable-nls \
--prefix=/usr \
--libexecdir=/usr/lib \
--localstatedir=/var/lib/games \
--runstatedir=/run \
--with-configdir=.config/lgames
make
make DESTDIR=$PKG install
rm -f $PKG/var/lib/games/ltris.hscr
chmod 1777 $PKG/var/lib/games
2023-01-25 13:39:12 +00:00
}