mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
44 lines
1.3 KiB
Text
44 lines
1.3 KiB
Text
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=ssh-ldap-pubkey
|
|
pkgver=1.3.3
|
|
pkgrel=0
|
|
pkgdesc="Utility to manage SSH public keys stored in LDAP"
|
|
url="https://github.com/jirutka/ssh-ldap-pubkey"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-pyldap py3-docopt"
|
|
makedepends="python3-dev"
|
|
install="$pkgname.post-install"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/jirutka/$pkgname/archive/v$pkgver.tar.gz
|
|
ldap.conf.patch"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
default_prepare || return 1
|
|
|
|
sed -i 's|/etc/ldap.conf|/etc/ssh-ldap-pubkey.conf|g' bin/ssh-ldap-pubkey
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
|
|
install -m 644 -D etc/ldap.conf \
|
|
"$pkgdir"/etc/ssh-ldap-pubkey.conf || return 1
|
|
|
|
mkdir -p "$pkgdir"/usr/share/doc/$pkgname
|
|
cp README.md etc/openssh-lpk.schema "$pkgdir"/usr/share/doc/$pkgname/
|
|
}
|
|
|
|
sha512sums="
|
|
b52d4de3e0704817e8ea0fb316c21646da1bac74ed226812c03f9ee5ae449a86e5ef4c679633d212db05382e216b254a185e29d4a2244318ad5de288b909254a ssh-ldap-pubkey-1.3.3.tar.gz
|
|
5b96dd8b1150eb62db7d33d1eee5ed9b28ebaf487c6a8cab6ba1d66d14496c2fdb1c73c1c0959ccd99ea53359b8d82861b7416dc0351bfa22ccfe59b5f530564 ldap.conf.patch
|
|
"
|