summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f64d57655c5986c1a83e13578dea4e090d0b3dd (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: mechakotik <mechakotik@gmail.com>

pkgname=tails-adventure
pkgver=d1.5.2
_gitver=demo-1.5.2

pkgrel=1
pkgdesc="Open source remake of Tails Adventure for modern platforms"
url="https://github.com/mechakotik/tails-adventure"
arch=('x86_64')
license=('GPL')

source=("${pkgname}-${pkgver}::https://github.com/mechakotik/$pkgname/archive/$_gitver.tar.gz")
sha256sums=('faab1a52c6fd51542e9b6c302ec7634dfe8b993ff82a783571ebfcb8ad9a72da')

depends=(
    'sdl2'
    'sdl2_image'
    'sdl2_mixer'
    'tinyxml2'
)

makedepends=(
    'base-devel'
    'meson'
)

build() {
    arch-meson $pkgname-$_gitver build -Dlinux_install=true
    meson compile -C build
}

package() {
    meson install -C build --destdir "$pkgdir"
}