1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 02:05:16 +03:00
aports/community/dzonegit/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

29 lines
782 B
Text

# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=dzonegit
pkgver=0.15
pkgrel=1
pkgdesc="Git hooks to manage a repository of DNS zones"
url="https://github.com/oskar456/dzonegit"
arch="noarch"
license="MIT"
depends="bind-tools git python3"
makedepends="py3-setuptools py3-pytest-runner"
checkdepends="py3-pytest py3-pytest-runner"
source="https://github.com/oskar456/dzonegit/archive/v$pkgver/dzonegit-$pkgver.tar.gz"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
698403132c2e07917041f9cee0c5056cde4fa334c46cb91c3b48e6085a649df0a5be05cef7eac19bdf6fe9bda83542e9290f5bbdbd675df1a1f9b9d9388d70d1 dzonegit-0.15.tar.gz
"