summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 08538c82a9b85f8a530d8234a923fa4d0f246033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Your Name <finitodoer@bureau.eu.org>
pkgname=finitodo
pkgver=2.0
pkgrel=2
pkgdesc="Finitodo is a simple yet versatile graphical task / todo list manager for Linux."
arch=(x86_64)
url="git://gitlab.com/finitodo/finitodo.git"
license=('GPL')
depends=(gtk3)
makedepends=(git make)
optdepends=()
provides=(finitodo)
source=('git+https://gitlab.com/finitodo/finitodo.git')
md5sums=('SKIP')

build() {
	cd finitodo
	make
}

package() {
	mkdir -p ${pkgdir}/usr/bin
	install -m 755 finitodo/finitodo ${pkgdir}/usr/bin
}