summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8e2e406c69d93f908150ab8bc11e384aa4e8dcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: HampusM (hampusm.business.mail@gmail.com)
pkgname=tic-tac-toe-term
pkgver=1.1
pkgrel=2
pkgdesc="A easy way for you to play Tic-Tac-Toe in any terminal."
arch=(any)
url="https://github.com/Hampusm/$pkgname"
license=('GPL')
depends=('glibc')
source=("git://github.com/Hampusm/$pkgname")
md5sums=('SKIP')

build() {
	cd "$pkgname"
	make
}

package() {
	cd "$pkgname"
	mkdir -p "$pkgdir/usr/share/man/man6/"
	make DESTDIR="$pkgdir" install
}