wok view mosh/receipt @ rev 18175

Up: openssh 6.9
author Alexander Medvedev <devl547@gmail.com>
date Wed Jul 01 21:28:11 2015 +0000 (2015-07-01)
parents 10c1de772cf6
children 7dd80db4b5f9
line source
1 # SliTaz package receipt.
3 PACKAGE="mosh"
4 VERSION="1.2.4"
5 CATEGORY="security"
6 SHORT_DESC="A Openbsd Secure Shell remplacement."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://mosh.mit.edu/"
11 WGET_URL="${WEB_SITE}$TARBALL"
12 TAGS="ssh"
13 NOTE1="On remote server: need -a in /etc/daemons.conf DROPBEAR_OPTIONS"
14 NOTE2="Mosh client *needs* openssh. Not compatible with dropbear yet"
16 DEPENDS="gcc-lib-base perl protobuf libssl libcrypto zlib ncursesw ssh"
17 BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev ncursesw-dev"
18 SUGGESTED="openssh"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure --prefix=/usr --sysconfdir=/etc \
24 --enable-compile-warnings=error &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }