wok annotate gesftpserver/receipt @ rev 21415

updated make (4.1 -> 4.2.1)
author Hans-G?nter Theisgen
date Tue Apr 23 17:28:22 2019 +0100 (2019-04-23)
parents 5499603fba0a
children 587d54bf66fa
rev   line source
pascal@17331 1 # SliTaz package receipt.
pascal@17331 2
pascal@17331 3 PACKAGE="gesftpserver"
pascal@17331 4 SOURCE="sftpserver"
Hans-G?nter@20961 5 VERSION="0.2.2"
pascal@17331 6 CATEGORY="network"
pascal@17331 7 SHORT_DESC="Green End SFTP Server with up to version 6 protocol support."
pascal@17331 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17331 9 LICENSE="GPL2"
Hans-G?nter@20961 10 WEB_SITE="http://www.greenend.org.uk/rjk/sftpserver"
Hans-G?nter@20961 11
pascal@17331 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@17331 13 WGET_URL="$WEB_SITE/$TARBALL"
pascal@17331 14
pascal@17331 15 # Rules to configure and make the package.
pascal@17331 16 compile_rules()
pascal@17331 17 {
Hans-G?nter@20961 18 ./configure \
Hans-G?nter@20961 19 --prefix=/usr \
pascal@17331 20 $CONFIGURE_ARGS &&
Hans-G?nter@20961 21 make -j 1 &&
pascal@17331 22 make DESTDIR=$DESTDIR install
pascal@17331 23 }
pascal@17331 24
pascal@17331 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17331 26 genpkg_rules()
pascal@17331 27 {
pascal@17331 28 mkdir -p $fs/usr/sbin
pascal@17331 29 cp -a $install/usr/libexec/gesftpserver $fs/usr/sbin/sftp-server
pascal@17331 30 }