blob: d0dd15ffa7c110fad37008ff4bb6edf420888cfc (
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
32
33
|
# Maintainer: Desmond Kabus <desmond.kabus@protonmail.com>
pkgbase=bigjubelweb-git
pkgname=bigjubelweb-git
_module='bigjubelweb'
pkgver=0.7.6.r0.g0f7ce11
pkgrel=1
pkgdesc="A web interface for BigJubel"
url="https://www.kabus.eu/git/bigjubelweb"
depends=('bigjubel' 'sqlite' 'python' 'python-flask' 'python-werkzeug' 'python-yaml' 'python-click')
makedepends=('python-setuptools' 'git')
provides=('bigjubelweb')
conflicts=('bigjubelweb')
license=('GPL')
arch=('any')
source=("bigjubelweb::git://www.kabus.eu/git/bigjubelweb")
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/${_module}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
}
build() {
cd "${srcdir}/${_module}"
python setup.py build
}
package() {
cd "${srcdir}/${_module}"
make DESTDIR="$pkgdir/" install
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}
|