summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 124d4f6540a5091fd9b6d6e8a8b1d1ddca6f0d9e (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: Nikolas Koesling <nikolas@koesling.info>

pkgname=python-json-cmd-server
pkgver=1.1.0
pkgrel=1
pkgdesc="Library for creating a json based server/client application"
url="https://gitlab.com/NikolasK-source-pythonlib/json-command-server"
license=('GPLv3')
arch=('any')
makedepends=('python-setuptools')
depends=('python' 'python-cryptography')
source=("git+https://gitlab.com/NikolasK-source-pythonlib/json-command-server.git#tag=v${pkgver}")

sha256sums=('SKIP')

build() {
    cd json-command-server
    python setup.py build
}

package() {
    cd json-command-server
    python setup.py install --root="$pkgdir" --optimize=1
}