blob: dfd1b0797f8aee1e73c86464765ded67818365d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: dem4ply <dem4ply@gmail.com>
pkgname=python-chibi-sshd
_pyname=chibi_sshd
pkgver=1.1.0
pkgrel=1
pkgdesc="package for handling config files of ssh like sshd_config and authorized_keys"
arch=('any')
url="https://pypi.org/project/chibi-sshd/"
license=('WTFPL')
groups=()
depends=("python" "python-chibi" "python-chibi-atlas" "python-chibi-hybrid" )
makedepends=("python-setuptools")
source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/${_pyname//-/_}/${_pyname//-/_}-$pkgver.tar.gz")
sha256sums=('424e5364163fdd1acb7319b1155b233fcd49fbf3929877b9deeb103830814419')
build() {
cd "$_pyname-$pkgver"
python setup.py build
}
package() {
cd $_pyname-${pkgver}
python setup.py install --root="$pkgdir" --optimize=1
}
|