wok annotate tinyssh-keyconvert/receipt @ rev 23607

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