wok rev 21572

tmate: inserted some environment variables in recipe
author Hans-G?nter Theisgen
date Sat May 18 17:29:21 2019 +0100 (2019-05-18)
parents 5eafd9dd2344
children dc7a250e4305
files tmate/receipt
line diff
     1.1 --- a/tmate/receipt	Sat May 18 16:52:54 2019 +0100
     1.2 +++ b/tmate/receipt	Sat May 18 17:29:21 2019 +0100
     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