summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1eeaf781c3e1e13729ca70495dbb787ee6a8707b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: BossCode45
pkgname='pathfind-screensaver'
pkgver=1.0
pkgrel=1
pkgdesc='Small terminal application that makes a maze then solves it'
arch=('any')
url='https://github.com/BossCode45/pathfind'
license=('GPL3')
depends=()
source=("https://github.com/BossCode45/Pathfind/archive/refs/tags/pathfind-v$pkgver.tar.gz")
sha256sums=('2458aea5ea467dc98e56695740fce53254328d84926c22cc502a40260442e3a7')

build() {
	cd "Pathfind-pathfind-v$pkgver"
	make
}
package() {
	cd "Pathfind-pathfind-v$pkgver"
	mkdir -p "$pkgdir/usr/local/bin"
	make DESTDIR="$pkgdir/usr/local/bin" install
}