wok view tmate/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
parents
children 7441485e30be
line source
1 # SliTaz package receipt.
3 PACKAGE="tmate"
4 VERSION="2.2.1"
5 CATEGORY="network"
6 SHORT_DESC="Instant Terminal Sharing"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://tmate.io/"
11 WGET_URL="https://github.com/tmate-io/tmate/archive/$VERSION.tar.gz"
13 DEPENDS="ncurses libevent msgpack libssh"
14 BUILD_DEPENDS="automake ncurses-dev libevent-dev msgpack-dev libssh-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
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 }