wok view tinyssh-keyconvert/receipt @ rev 22387

Add tinyssh-keyconvert
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 28 19:02:16 2019 +0100 (2019-11-28)
parents
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="tinyssh-keyconvert"
4 VERSION="0.3.2"
5 CATEGORY="development"
6 SHORT_DESC="Convert ed25519 hostkeys from openssh format"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/ansemjo/tinyssh-keyconvert"
11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
13 DEPENDS="python"
14 BUILD_DEPENDS="python-setuptools"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 python setup.py build &&
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs $install/usr/share/doc
27 cp -a $install/usr $fs
28 cp $src/README.md $install/usr/share/doc
29 }