wok-current diff tmate/receipt @ rev 21623
linld: more ram for zImage (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun May 26 12:07:54 2019 +0200 (2019-05-26) |
parents | 3ea059f6339d |
children | 0721e701c55a |
line diff
1.1 --- a/tmate/receipt Thu Nov 30 17:48:13 2017 +0100 1.2 +++ b/tmate/receipt Sun May 26 12:07:54 2019 +0200 1.3 @@ -3,22 +3,30 @@ 1.4 PACKAGE="tmate" 1.5 VERSION="2.2.1" 1.6 CATEGORY="network" 1.7 -SHORT_DESC="Instant Terminal Sharing" 1.8 +SHORT_DESC="Instant Terminal Sharing." 1.9 MAINTAINER="pascal.bellard@slitaz.org" 1.10 LICENSE="BSD" 1.11 +WEB_SITE="https://tmate.io/" 1.12 + 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 -WEB_SITE="https://tmate.io/" 1.15 -WGET_URL="https://github.com/tmate-io/tmate/archive/$VERSION.tar.gz" 1.16 +WGET_URL="https://github.com/tmate-io/$PACKAGE/archive/$VERSION.tar.gz" 1.17 1.18 -DEPENDS="ncurses libevent msgpack libssh" 1.19 -BUILD_DEPENDS="automake ncurses-dev libevent-dev msgpack-dev libssh-dev" 1.20 +DEPENDS="libevent libssh msgpack ncurses" 1.21 +BUILD_DEPENDS="automake libevent-dev libssh-dev msgpack-dev ncurses-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 ./autogen.sh 1.27 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.28 - --mandir=/usr/share/man \ 1.29 + 1.30 + export LIBNCURSES_LIBS="/lib/libncurses.so" 1.31 + export LIBNCURSES_FLAGS=" " 1.32 + export LIBS="/lib/libtinfo.so" 1.33 + 1.34 + ./configure \ 1.35 + --prefix=/usr \ 1.36 + --infodir=/usr/share/info \ 1.37 + --mandir=/usr/share/man \ 1.38 $CONFIGURE_ARGS && 1.39 make && 1.40 make DESTDIR=$DESTDIR install