26 lines
766 B
Bash
26 lines
766 B
Bash
# Template file for 'gandi-cli'
|
|
pkgname=gandi-cli
|
|
version=1.4
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="gandi.cli-${version}"
|
|
build_style=python3-module
|
|
pycompile_module="gandi/cli"
|
|
hostmakedepends="python3-docutils python3-setuptools"
|
|
depends="python3-setuptools python3-IPy python3-click python3-requests python3-yaml"
|
|
checkdepends="$depends python3-pytest"
|
|
short_desc="Command line interface to Gandi.net"
|
|
maintainer="Lon Willett <xgit@lonw.net>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://cli.gandi.net"
|
|
distfiles="https://github.com/Gandi/gandi.cli/archive/${version}.tar.gz"
|
|
checksum=81333e6982b45c27938ae9e1ae4612ace1145bab69abf36373d2ac23dbd0090b
|
|
|
|
do_check() {
|
|
python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
rst2man --no-generator gandicli.man.rst > gandi.1
|
|
vman gandi.1
|
|
}
|