wok annotate shellinabox/receipt @ rev 21845

updated rox packages (2.8 -> 2.11)
author Hans-G?nter Theisgen
date Sun Sep 15 11:06:31 2019 +0100 (2019-09-15)
parents 7f7bb07cd863
children 848e2021d813
rev   line source
pascal@8253 1 # SliTaz package receipt.
pascal@8253 2
pascal@8253 3 PACKAGE="shellinabox"
pascal@20716 4 VERSION="2.20"
pascal@8253 5 CATEGORY="network"
pascal@8253 6 SHORT_DESC="Ajax web based terminal emulator."
pascal@8253 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15587 8 LICENSE="GPL2"
pascal@8253 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20724 10 WEB_SITE="https://github.com/shellinabox/shellinabox"
pascal@20724 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@20716 12 TAGS="web-application"
pascal@15587 13
pascal@8253 14 DEPENDS="zlib"
pascal@20716 15 BUILD_DEPENDS="zlib-dev openssl-dev autoconf automake libtool"
pascal@18869 16 SUGGESTED="ssh knock"
pascal@8253 17
pascal@8253 18 # Rules to configure and make the package.
pascal@8253 19 compile_rules()
pascal@8253 20 {
pascal@20716 21 autoreconf -i
pascal@8254 22 ./configure --prefix=/usr \
pascal@18869 23 --mandir=/usr/share/man \
pascal@18869 24 $CONFIGURE_ARGS &&
pascal@8253 25 make &&
pascal@15587 26 make DESTDIR=$DESTDIR install
pascal@8253 27 }
pascal@8253 28
pascal@8253 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@8253 30 genpkg_rules()
pascal@8253 31 {
pascal@18869 32 mkdir -p $fs/usr/bin $fs/usr/share/shellinabox $fs/etc/init.d
pascal@15587 33 cp -a $install/usr/bin $fs/usr
pascal@20716 34 cp $src/shellinabox/*black*.css $fs/usr/share/shellinabox
pascal@18869 35 cp $stuff/*.css $fs/usr/share/shellinabox
pascal@18869 36 cp $stuff/shellinabox $fs/etc/init.d/
pascal@8253 37 }
pascal@18869 38
pascal@18869 39 # Pre and post install commands for Tazpkg.
pascal@18869 40 # We stop the server by default in case of upgarde.
pascal@18869 41 pre_install()
pascal@18869 42 {
pascal@18869 43 [ -z "$1" ] && [ -f /etc/init.d/$PACKAGE ] && /etc/init.d/$PACKAGE stop
pascal@18869 44 }
pascal@18869 45
pascal@18869 46 post_install()
pascal@18869 47 {
pascal@18869 48 [ "$1" ] || /etc/init.d/$PACKAGE start
pascal@18869 49 }
pascal@18869 50
pascal@18869 51 pre_remove()
pascal@18869 52 {
pascal@18869 53 [ "$1" ] || /etc/init.d/$PACKAGE stop
pascal@18869 54 }