mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
29 lines
950 B
Text
29 lines
950 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-seqdiag
|
|
_pkgname=seqdiag
|
|
pkgver=3.0.0
|
|
pkgrel=2
|
|
pkgdesc="Generate sequence-diagram image file from spec-text file"
|
|
url="https://pypi.org/project/seqdiag"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="py3-funcparserlib py3-blockdiag py3-pillow"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-seqdiag" # for backwards compatibility
|
|
provides="py-seqdiag=$pkgver-r$pkgrel" # for backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
b98a7056abc9941fe88fec5e58d07fa76b027d24204a0b072aa15690d557303589fb2bffed59f6be1b58c8bdadac9cac3e75e427e027bc815a82e97be9570e22 seqdiag-3.0.0.tar.gz
|
|
"
|