summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 57e2fb5f5bb52e151dc05b02070f3500aa38f891 (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
arch=(any)
backup=(etc/shiromino.ini)
conflicts=(shiromino)
depends=(
	libvorbis
	sdl2
	sdl2_image
	sdl2_mixer
	sqlite
)
license=(MIT)
makedepends=(
	cmake
	git
	pkgconf
)
pkgdesc="A fast-paced puzzle game with roots in the arcade"
pkgname=shiromino-git
pkgrel=1
pkgver='0.2.1+2+g977f510'
provides=(shiromino)
sha256sums=(SKIP)
source=(git+https://github.com/shiromino/shiromino.git)
url=https://github.com/shiromino/shiromino
build() {
	cd "$srcdir/shiromino"
	cmake\
		-B build\
		-DCMAKE_BUILD_TYPE=Release\
		-S .
	cmake --build build
}
package() {
	cmake --install "$srcdir/shiromino/build" --prefix "$pkgdir" --strip
}