wok annotate tmux/receipt @ rev 15883
python-pillow: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 06 22:17:45 2014 +0000 (2014-02-06) |
parents | 729865729f2a |
children | 4eb561fa0e5d |
rev | line source |
---|---|
paul@5858 | 1 # SliTaz package receipt. |
paul@5858 | 2 |
paul@5858 | 3 PACKAGE="tmux" |
paul@13532 | 4 VERSION="1.7" |
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" |
paul@5858 | 12 |
erjo@9924 | 13 DEPENDS="ncursesw libevent" |
erjo@9924 | 14 BUILD_DEPENDS="ncursesw-dev libevent-dev" |
erjo@9924 | 15 |
paul@5858 | 16 # Rules to configure and make the package. |
paul@5858 | 17 compile_rules() |
paul@5858 | 18 { |
paul@5858 | 19 cd $src |
paul@5858 | 20 |
gokhlayeh@11573 | 21 ./configure $CONFIGURE_ARGS && |
gokhlayeh@9104 | 22 make PREFIX=/usr && |
gokhlayeh@9104 | 23 make PREFIX=/usr install && |
erjo@9924 | 24 install -d m755 "$DESTDIR/usr/share/tmux/" && |
erjo@9924 | 25 install -m 644 examples/* "$DESTDIR/usr/share/tmux/" |
paul@5858 | 26 } |
paul@5858 | 27 |
paul@5858 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@5858 | 29 genpkg_rules() |
paul@5858 | 30 { |
gokhlayeh@9104 | 31 mkdir -p $fs/usr/share/terminfo/s/ |
paul@13532 | 32 cp -a $install/usr/bin $fs/usr |
paul@5858 | 33 |
paul@5858 | 34 # copy sample configs |
paul@13532 | 35 cp -a $install/usr/share/tmux $fs/usr/share |
gokhlayeh@9104 | 36 |
paul@13532 | 37 # Get screen terminfo data |
pascal@9114 | 38 tazpkg get-install ncursesw-extra --root=$src/ncursesw-extra > /dev/null 2>&1 |
gokhlayeh@9104 | 39 cp -a $src/ncursesw-extra/usr/share/terminfo/s/screen \ |
gokhlayeh@9104 | 40 $fs/usr/share/terminfo/s/ |
gokhlayeh@9104 | 41 rm -r $src/ncursesw-extra |
paul@5858 | 42 } |
paul@5858 | 43 |