blob: d08e58a2802ae0892130eb6c95bf8362a229922a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Stefano Marsili <efanomars@gmx.ch>
pkgname=jointris
pkgver=0.32
pkgrel=1
pkgdesc="Joinable tetris blocks with bombs"
url='https://efanomars.com/games/jointris'
arch=('x86_64' 'aarch64')
license=('GPL3')
depends=(
'stmm-games>=0.32'
'stmm-input>=0.17'
'gtkmm3')
makedepends=('cmake' 'doxygen' 'graphviz' 'python')
optdepends=()
#provides=("jointris")
#replaces=("jointris")
#conflicts=("jointris")
source=('https://efanomars.com/sources/jointris-0.32.tar.gz')
sha256sums=('e82c08a7a50639ef07446fab4bdcb7bd56421df2c03e25c9dfb63ab56ebc0c23')
build() {
cd "${srcdir}/jointris"
./scripts/install_jointris-all.py -b=Release -s=Off -t=Off -d=Off --installdir="/usr" --no-install --no-sudo
}
package() {
cd "${srcdir}/jointris"
./scripts/priv/dd_install_jointris-all.py -b=Release -s=Off -t=Off -d=Off --installdir="/usr" --destdir="${pkgdir}" --no-configure --no-make --no-sudo
}
|