# HG changeset patch # User Hans-G?nter Theisgen # Date 1558196961 -3600 # Node ID 7441485e30be0ed909564b5a72e63c99e44f511d # Parent 5eafd9dd2344dd51a1a3abbdb139aa7d5797ab93 tmate: inserted some environment variables in recipe diff -r 5eafd9dd2344 -r 7441485e30be tmate/receipt --- a/tmate/receipt Sat May 18 16:52:54 2019 +0100 +++ b/tmate/receipt Sat May 18 17:29:21 2019 +0100 @@ -3,22 +3,30 @@ PACKAGE="tmate" VERSION="2.2.1" CATEGORY="network" -SHORT_DESC="Instant Terminal Sharing" +SHORT_DESC="Instant Terminal Sharing." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://tmate.io/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://tmate.io/" -WGET_URL="https://github.com/tmate-io/tmate/archive/$VERSION.tar.gz" +WGET_URL="https://github.com/tmate-io/$PACKAGE/archive/$VERSION.tar.gz" -DEPENDS="ncurses libevent msgpack libssh" -BUILD_DEPENDS="automake ncurses-dev libevent-dev msgpack-dev libssh-dev" +DEPENDS="libevent libssh msgpack ncurses" +BUILD_DEPENDS="automake libevent-dev libssh-dev msgpack-dev ncurses-dev" # Rules to configure and make the package. compile_rules() { ./autogen.sh - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + + export LIBNCURSES_LIBS="/lib/libncurses.so" + export LIBNCURSES_FLAGS=" " + export LIBS="/lib/libtinfo.so" + + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install