summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d16c5925e82a8c557a17d63f6dbff0588d50028 (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.1.1
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 INSTALL_PATH="$pkgdir/usr" install
}