summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0b33b633afa88119f24aabf14d5797adc2bdfceb (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
# Maintainer: Joachim Desroches <joachim.desroches@epfl.ch>

pkgname=av-98
pkgver=1.0.2dev
pkgrel=1
arch=(any)

pkgdesc='Command line Gemini client.'
url='https://tildegit.org/solderpunk/AV-98/'
license=(BSD)

depends=(python)
optdepends=('python-ansicolor: neater text display'
           'python-cryptography: better support of TOFU client certificates')
makedepends=(coreutils python-setuptools git)

source=("git+https://tildegit.org/solderpunk/AV-98/")
sha256sums=(SKIP)

build() {
	cd AV-98
	python3 setup.py build
}

package() {
	cd AV-98
	python3 setup.py install --root="$pkgdir" --optimize=1
}