summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b276b9a5dd4a895dd31bad5bc35ee18e0b9a5f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Utkarsh Kumar Singh <utkarshkrsingh@proton.me>
pkgname=taskhub
pkgver=1.0
pkgrel=1
pkgdesc="a cli-based todo-list application written in c++"
arch=('x86_64')
url="https://github.com/utkarshkrsingh/taskhub"
license=('BSD2')
makedepends=('git')
source=("taskhub::git+https://github.com/utkarshkrsingh/taskhub.git")
sha256sums=('SKIP')

build() {
	cd "$pkgname"
	make
}

package() {
	cd "$pkgname"
	install -Dm755 ./taskhub "$pkgdir/usr/bin/taskhub"
}