diff options
author | Chess Griffin <chess@chessgriffin.com> | 2010-05-11 22:55:33 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:55:33 +0200 |
commit | 115e639bc392dd9d1c046b008beac89082c09146 (patch) | |
tree | 9beb4b2261857f2ee51ce43538d413de2ab229a8 /system/tmux | |
parent | 348c00af5175605b6543c2f1173000693c9bb107 (diff) |
system/tmux: Added to 12.1 repository
Diffstat (limited to 'system/tmux')
-rw-r--r-- | system/tmux/README | 4 | ||||
-rw-r--r-- | system/tmux/slack-desc | 17 | ||||
-rw-r--r-- | system/tmux/tmux.SlackBuild | 65 | ||||
-rw-r--r-- | system/tmux/tmux.info | 8 |
4 files changed, 94 insertions, 0 deletions
diff --git a/system/tmux/README b/system/tmux/README new file mode 100644 index 000000000000..8a3fca72f74c --- /dev/null +++ b/system/tmux/README @@ -0,0 +1,4 @@ +tmux is a terminal multiplexer. It enables a number of terminals +(or windows) to be accessed and controlled from a single terminal. +It is intended to be a simple, modern, BSD-licensed alternative to +programs such as GNU Screen. diff --git a/system/tmux/slack-desc b/system/tmux/slack-desc new file mode 100644 index 000000000000..47b96dba53ef --- /dev/null +++ b/system/tmux/slack-desc @@ -0,0 +1,17 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +tmux: tmux (light terminal multiplexer) +tmux: +tmux: tmux is a terminal multiplexer. It enables a number of terminals +tmux: (or windows) to be accessed and controlled from a single terminal. +tmux: It is intended to be a simple, modern, BSD-licensed alternative to +tmux: programs such as GNU Screen. +tmux: +tmux: Homepage: http://sourceforge.net/projects/tmux +tmux: diff --git a/system/tmux/tmux.SlackBuild b/system/tmux/tmux.SlackBuild new file mode 100644 index 000000000000..d35a3fe859ce --- /dev/null +++ b/system/tmux/tmux.SlackBuild @@ -0,0 +1,65 @@ +#!/bin/sh + +# Slackware build script for tmux + +# Written by Chess Griffin <chess@chessgriffin.com> + +PRGNAM=tmux +VERSION=${VERSION:-0.4a} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" + +make +make install PREFIX=/usr DESTDIR=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a NOTES TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/system/tmux/tmux.info b/system/tmux/tmux.info new file mode 100644 index 000000000000..94bef5da76aa --- /dev/null +++ b/system/tmux/tmux.info @@ -0,0 +1,8 @@ +PRGNAM="tmux" +VERSION="0.4a" +HOMEPAGE="http://sourceforge.net/projects/tmux" +DOWNLOAD="http://downloads.sourceforge.net/tmux/tmux-0.4a.tar.gz" +MD5SUM="4afd9540f6b89df9a443cffb8345bf5a" +MAINTAINER="Chess Griffin" +EMAIL="chess@chessgriffin.com" +APPROVED="David Somero"
\ No newline at end of file |