summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 96f4e6beee8aa36d59c0f3a2ba38aece7a5a766f (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.0
pkgrel=1
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
}