blob: eb4c292e08c7dfd4a83e6cecfa5a976342062731 (
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
36
37
|
# Maintainer: Andrei Alexeyev <akari@alienslab.net>
# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
# Contributor: Lukas Weber <laochailan@web.de>
pkgname=taisei-git
pkgver=1.1.r19.ge0d76df
pkgrel=1
pkgdesc="Open source Touhou clone (development version)"
arch=('i686' 'x86_64')
url="http://taisei-project.org/"
license=('MIT')
depends=('sdl2_mixer' 'sdl2_ttf' 'libzip' 'hicolor-icon-theme')
provides=('taisei')
conflicts=('taisei')
makedepends=('git' 'cmake')
source=(taisei::"git+https://github.com/laochailan/taisei.git")
md5sums=('SKIP')
pkgver() {
cd taisei
git describe --long --tags --match "v[0-9]*[!a-z]" | sed 's/^v//;s/-/.r/;s/-/./'
}
build() {
cd taisei
cmake ./ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd taisei
make DESTDIR="$pkgdir/" install
# license
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
|