summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 257bdce8337b55b0e335eb1cdcf7931ef61b1f05 (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
# Maintainer: Sefa Eyeoglu <contact@scrumplex.net>

_pkgname=python-pyqis
pkgname=${_pkgname}-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Python QIS client for German university information servers"
arch=(any)
url="https://gitlab.com/Scrumplex/pyqis"
license=("GPL3")
depends=("python-requests" "python-beautifulsoup4" "python-lxml")
makedepends=("git" "python-setuptools")
source=("${_pkgname}::git+https://gitlab.com/Scrumplex/pyqis.git#tag=${pkgver}")
sha512sums=(SKIP)

build() {
    cd "$_pkgname"

    python setup.py build
}

package() {
    cd "$_pkgname"

    python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}