summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0b5fae45d54a96362d1b346140d57660f64fb67c (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: FĂ©licien Pillot <felicien.pillot@member.fsf.org>
pkgname=make7libre
pkgver=0.8.2
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=("https://gitlab.com/felandral/make7libre/raw/dist/${pkgname}-${pkgver}.tar.gz" "https://gitlab.com/felandral/make7libre/raw/dist/${pkgname}-${pkgver}.tar.gz.sig")
validpgpkeys=('0F4775FC247B70595AD7573513907AE74D527673')
md5sums=("c373eca8c215a75418a5f8add707e5cb" \
         "bc615f805a886084938dcbed9e71db17")

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

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

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