wok view mosh/receipt @ rev 16644

portmidi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 12 20:31:51 2014 +0000 (2014-05-12)
parents c8f420d47ea8
children 7355f9472def
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 PROVIDE="ssh"
13 TAGS="ssh"
15 DEPENDS="gcc-lib-base perl protobuf libssl libcrypto zlib ncursesw"
16 BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev ncursesw-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr --sysconfdir=/etc \
22 --enable-compile-warnings=error &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }