summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2e82c3232fdfeda3bb59e0eba33b5f7122e1b66f (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
# Maintainer: Jack O'Sullivan <jackos1998 at gmail dot com>
pkgname=terminal-mines
pkgver=1.2.0
pkgrel=1
pkgdesc="An ncurses-based minesweeper game."
url='https://github.com/accatyyc/terminal-mines'
license=("custom:Unknown")
arch=('i686' 'x86_64')
source=("git+https://github.com/accatyyc/terminal-mines#tag=$pkgver")
sha256sums=('SKIP')

prepare() {
	cd "$pkgname"
	git submodule init
	git submodule update
}
build() {
	cd "$pkgname"
	make
}
package() {
	cd "$pkgname"
	make DESTDIR="$pkgdir" PREFIX=/usr install
}