summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 97138686501c523918be8633e6f1ecda1f6a07ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Your Name <TheRetikGM@gmail.com>
pkgname=2048-curses
pkgver=1.2
pkgrel=0
pkgdesc="Curses based popular game 2048 written in C"
arch=('x86_64' 'aarch64' 'armv7h')
url="https://github.com/theretikgm/2048-curses"
license=('GPL')
depends=('ncurses>=6.0-0' 'git')
source=("git+https://github.com/theretikgm/2048-curses.git")
sha256sums=('SKIP')
build() {
	cd "${srcdir}/${pkgname}/src"
	make
}

package() {
	install "${srcdir}/${pkgname}/src/${pkgname}" -D "${pkgdir}/usr/bin/${pkgname}"
}