summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 84cf91b26642869a0f426f7589e1668698c3a2c9 (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
# Maintainer: FĂ©licien Pillot <felicien.pillot@member.fsf.org>
pkgname=make7libre
pkgver=0.8
pkgrel=1
pkgdesc="Free/libre block match puzzle game"
arch=('x86_64')
url="https://gitlab.com/felandral/make7libre"
license=('GPL3')
depends=('gtkmm3')
makedepends=('intltool')
changelog=ChangeLog
source=("make7libre-0.8.tar.gz::https://gitlab.com/felandral/make7libre/raw/dist/${pkgname}-${pkgver}.tar.gz" \
        "make7libre-0.8.tar.gz.sig::https://gitlab.com/felandral/make7libre/raw/dist/${pkgname}-${pkgver}.tar.gz.sig")
validpgpkeys=('0F4775FC247B70595AD7573513907AE74D527673')
md5sums=("a2946e8b5a58f9483fae1331794a141e" \
         "3924029853c08881fb1b4e61e152f622")

build() {
	cd "$pkgname-$pkgver"
	./configure --prefix=/usr
	make
}

check() {
	cd "$pkgname-$pkgver"
	make -k check
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}