wok diff tmate/receipt @ rev 20469
fusioninventory-agent: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 12 11:23:47 2018 +0200 (2018-10-12) |
parents | |
children | 7441485e30be |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tmate/receipt Fri Oct 12 11:23:47 2018 +0200 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="tmate" 1.7 +VERSION="2.2.1" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Instant Terminal Sharing" 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="BSD" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="https://tmate.io/" 1.14 +WGET_URL="https://github.com/tmate-io/tmate/archive/$VERSION.tar.gz" 1.15 + 1.16 +DEPENDS="ncurses libevent msgpack libssh" 1.17 +BUILD_DEPENDS="automake ncurses-dev libevent-dev msgpack-dev libssh-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./autogen.sh 1.23 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.24 + --mandir=/usr/share/man \ 1.25 + $CONFIGURE_ARGS && 1.26 + make && 1.27 + make DESTDIR=$DESTDIR install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr 1.34 + cp -a $install/usr/bin $fs/usr 1.35 +}