diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/tmux/README | 4 | ||||
-rw-r--r-- | system/tmux/slack-desc | 19 | ||||
-rw-r--r-- | system/tmux/tmux.SlackBuild | 108 | ||||
-rw-r--r-- | system/tmux/tmux.info | 10 |
4 files changed, 0 insertions, 141 deletions
diff --git a/system/tmux/README b/system/tmux/README deleted file mode 100644 index 0873ebcc88..0000000000 --- a/system/tmux/README +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index bed0bce1ef..0000000000 --- a/system/tmux/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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: -tmux: -tmux: diff --git a/system/tmux/tmux.SlackBuild b/system/tmux/tmux.SlackBuild deleted file mode 100644 index eb2fa15832..0000000000 --- a/system/tmux/tmux.SlackBuild +++ /dev/null @@ -1,108 +0,0 @@ -#!/bin/sh - -# Slackware build script for tmux - -# Copyright 2009-2010 Bogdan Pangrati <bogdan.pangrati@gmail.com> -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=tmux -VERSION=${VERSION:-1.5} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -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 {} \; - -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -sed -i "/^CFLAGS =/s|=|+=|" Makefile - -CFLAGS="$SLKCFLAGS" \ - make - -make install PREFIX=/usr DESTDIR=$PKG - -# Fix up some root:bin ownership and add owner write perms where needed -chown -R root:root $PKG -chmod 0755 $PKG/usr/bin/tmux -chmod 0644 $PKG/usr/man/man1/tmux.1 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES FAQ NOTES TODO examples/ \ - $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.${PKGTYPE:-tgz} diff --git a/system/tmux/tmux.info b/system/tmux/tmux.info deleted file mode 100644 index 1a8ea52c42..0000000000 --- a/system/tmux/tmux.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="tmux" -VERSION="1.5" -HOMEPAGE="http://sourceforge.net/projects/tmux" -DOWNLOAD="http://downloads.sourceforge.net/tmux/tmux-1.5.tar.gz" -MD5SUM="3d4b683572af34e83bc8b183a8285263" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="libevent" -MAINTAINER="Bogdan Pangrati" -EMAIL="bogdan.pangrati@gmail.com" |