mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-02 22:41:33 +01:00
22 lines
796 B
Plaintext
22 lines
796 B
Plaintext
# Contributor: Lucas Ramage <ramage.lucas@protonmail.com>
|
|
# Maintainer: Lucas Ramage <ramage.lucas@protonmail.com>
|
|
pkgname=cdist
|
|
pkgver=6.9.6
|
|
pkgrel=0
|
|
pkgdesc="A Usable Configuration Management System"
|
|
arch="noarch"
|
|
url="https://www.cdi.st/"
|
|
options="!check"
|
|
license="GPL-3.0-or-later"
|
|
depends="python3"
|
|
source="$pkgname-$pkgver.tar.gz::https://code.ungleich.ch/ungleich-public/cdist/uploads/82359248752c8fb8570b0d19d5a12523/cdist-$pkgver.tar.gz"
|
|
|
|
package() {
|
|
./bin/$pkgname 2> /dev/null
|
|
python3 setup.py build install --root="$pkgdir"
|
|
find "$pkgdir" -type d -exec chmod 0755 {} \;
|
|
find "$pkgdir" -type f -exec chmod a+r {} \;
|
|
}
|
|
|
|
sha512sums="258683e7899004ab814b3861049a459fc6dc08bd7ab48d1cd1035fd1daa69dde030700d41812516feb36cbc9c836819b45fc397a07c01c4e9f72873b3a8f8955 cdist-6.9.6.tar.gz"
|