summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6e6f2037634af30a3d39a220bfc46722b5f3e98c (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
25
26
27
28
29
30
31
# Maintainer: ahiiti <contact@stefan-braendle.de>

pkgname=at4
pkgver=0.0
pkgrel=1
pkgdesc="ahiiti's truly tremendous time tracker"
arch=('any')
url="https://gitlab.com/ahiiti/time-tracker"
license=('GPL3')
source=(
    "$pkgname::git+${url}.git#branch=devel-python-module"
)
sha512sums=(
    "SKIP"
)
makedepends=(
    'git'
)
depends=(
    'python'
    'python-jinja'
)
build() {
    cd "${srcdir}/${pkgname}"
    python setup.py build
}

package() {
    cd "${srcdir}/${pkgname}"
    python setup.py install --skip-build --prefix=/usr --root="${pkgdir}/"
}