mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
21 lines
791 B
Plaintext
21 lines
791 B
Plaintext
# Contributor: Lucas Ramage <ramage.lucas@protonmail.com>
|
|
# Maintainer: Lucas Ramage <ramage.lucas@protonmail.com>
|
|
pkgname=cdist
|
|
pkgver=4.10.4
|
|
pkgrel=1
|
|
pkgdesc="A Usable Configuration Management System"
|
|
arch="noarch"
|
|
url="https://www.nico.schottelius.org/software/cdist/"
|
|
options="!check"
|
|
license="GPL-3.0"
|
|
depends="python3"
|
|
source="https://github.com/ungleich/${pkgname}/releases/download/4.10.4/${pkgname}-${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="19b6bd824352d77f331a2bb1bec83066fb328550249068c8037e47e9e51aba743d96119cffd5fcdefb99d1f69444fb7c608a563dfcbccfc3f2e2700fee103636 cdist-4.10.4.tar.gz"
|