summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2c5d36bb8237f3f6a873fb7fe27d0225b91fd33d (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
# Maintainer: Carson Black <uhhadd AT gmail DOT com>
pkgname=taigo
pkgver=0.3
pkgrel=1
pkgdesc="A virtual pet for your desktop built with GTK+, Vala, and love"
arch=(any)

url="https://github.com/Appadeia/taigo"
license=("GPL")

depends=(
    "gtk3" "clutter"
)
makedepends=(
    "vala" "meson"
)

source=("$pkgname-$pkgver.tar.gz::https://github.com/Appadeia/$pkgname/archive/$pkgver.tar.gz")
md5sums=('0cdf727a9f419365106bd5c77006af6e')

build() {
    cd "$pkgname-$pkgver"
    arch-meson build
    ninja -C build
}

package() {
    cd "$pkgname-$pkgver"
    DESTDIR="$pkgdir" meson install -C build
    install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}