wok annotate tinyssh/receipt @ rev 20406

asterisk: add code2 & opus codec
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 20 23:12:02 2018 +0200 (2018-07-20)
parents f10c2b5c57d6
children 284b8e871560
rev   line source
pascal@20260 1 # SliTaz package receipt.
pascal@20260 2
pascal@20260 3 PACKAGE="tinyssh"
pascal@20260 4 VERSION="20180201"
pascal@20260 5 CATEGORY="network"
pascal@20260 6 SHORT_DESC="a small SSH server"
pascal@20260 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20260 8 LICENSE="PublicDomain"
pascal@20260 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20260 10 WEB_SITE="https://tinyssh.org/"
pascal@20260 11 WGET_URL="https://github.com/janmojzis/tinyssh/archive/$VERSION.tar.gz"
pascal@20260 12 CONFIG_FILES="/etc/tinyssh"
pascal@20260 13
pascal@20260 14 # Rules to configure and make the package.
pascal@20260 15 compile_rules()
pascal@20260 16 {
pascal@20260 17 make &&
pascal@20260 18 make DESTDIR=$DESTDIR install
pascal@20260 19 }
pascal@20260 20
pascal@20260 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20260 22 genpkg_rules()
pascal@20260 23 {
pascal@20260 24 mkdir -p $fs/usr
pascal@20260 25 cp -a $install/usr/sbin $fs/usr
pascal@20262 26 mkdir -p $fs/etc/tinyssh
pascal@20260 27 }
pascal@20260 28
pascal@20260 29 post_install()
pascal@20260 30 {
pascal@20263 31 [ -d $1/etc/tinyssh/sshkeydir ] ||
pascal@20260 32 chroot $1/ tinysshd-makekey /etc/tinyssh/sshkeydir
pascal@20260 33 grep -q ^ssh $1/etc/inetd.conf || cat >> $1/etc/inetd.conf <<EOT
pascal@20264 34 ssh stream tcp nowait root /usr/sbin/tinysshd tinysshd -s -o -l -v /etc/tinyssh/sshkeydir -x sftp=/usr/sbin/sftp-server
pascal@20260 35 EOT
pascal@20260 36 }
pascal@20260 37
pascal@20260 38 pre_remove()
pascal@20260 39 {
pascal@20260 40 sed -i '/tinysshd/d' $1/etc/inetd.conf
pascal@20260 41 }