wok-6.x annotate tmux/receipt @ rev 16906
pangox-compat: tiny edits; add pangox-compat-dev; gtkglext(-dev): update (b)deps.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Jul 16 01:54:55 2014 +0300 (2014-07-16) |
parents | 4eb561fa0e5d |
children | 4be14acc67dd |
rev | line source |
---|---|
paul@5858 | 1 # SliTaz package receipt. |
paul@5858 | 2 |
paul@5858 | 3 PACKAGE="tmux" |
paul@16112 | 4 VERSION="1.9a" |
paul@5858 | 5 CATEGORY="utilities" |
paul@5858 | 6 SHORT_DESC="Terminal multiplexer." |
paul@5858 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15601 | 8 LICENSE="MIT" |
paul@5858 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@5858 | 10 WEB_SITE="http://tmux.sourceforge.net/" |
paul@5858 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@16116 | 12 HOST_ARCH="i486 arm" |
paul@5858 | 13 |
erjo@9924 | 14 DEPENDS="ncursesw libevent" |
erjo@9924 | 15 BUILD_DEPENDS="ncursesw-dev libevent-dev" |
erjo@9924 | 16 |
paul@5858 | 17 # Rules to configure and make the package. |
paul@5858 | 18 compile_rules() |
paul@5858 | 19 { |
gokhlayeh@11573 | 20 ./configure $CONFIGURE_ARGS && |
gokhlayeh@9104 | 21 make PREFIX=/usr && |
gokhlayeh@9104 | 22 make PREFIX=/usr install && |
erjo@9924 | 23 install -d m755 "$DESTDIR/usr/share/tmux/" && |
erjo@9924 | 24 install -m 644 examples/* "$DESTDIR/usr/share/tmux/" |
paul@5858 | 25 } |
paul@5858 | 26 |
paul@5858 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@5858 | 28 genpkg_rules() |
paul@5858 | 29 { |
gokhlayeh@9104 | 30 mkdir -p $fs/usr/share/terminfo/s/ |
paul@13532 | 31 cp -a $install/usr/bin $fs/usr |
paul@5858 | 32 |
paul@5858 | 33 # copy sample configs |
paul@13532 | 34 cp -a $install/usr/share/tmux $fs/usr/share |
gokhlayeh@9104 | 35 |
paul@13532 | 36 # Get screen terminfo data |
pascal@9114 | 37 tazpkg get-install ncursesw-extra --root=$src/ncursesw-extra > /dev/null 2>&1 |
gokhlayeh@9104 | 38 cp -a $src/ncursesw-extra/usr/share/terminfo/s/screen \ |
gokhlayeh@9104 | 39 $fs/usr/share/terminfo/s/ |
gokhlayeh@9104 | 40 rm -r $src/ncursesw-extra |
paul@5858 | 41 } |
paul@5858 | 42 |