tmux: initial release

This commit is contained in:
Juergen Daubert 2009-04-23 11:22:29 +02:00
parent c558afda77
commit dc5041a870
3 changed files with 24 additions and 0 deletions

6
tmux/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tmux
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/tmux.1.gz

1
tmux/.md5sum Normal file
View File

@ -0,0 +1 @@
7292916c1fee6035def1d5f4efdb4770 tmux-0.8.tar.gz

17
tmux/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Terminal multiplexer like screen
# URL: http://sourceforge.net/projects/tmux
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
# Depends on: ncurses
name=tmux
version=0.8
release=1
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build() {
cd $name-$version
sed -i '50s/=.*/= -iquote\./' GNUmakefile
make
install -D -m 0755 tmux $PKG/usr/bin/tmux
install -D -m 0644 tmux.1 $PKG/usr/man/man1/tmux.1
}