summaryrefslogtreecommitdiffstats
path: root/tmux/Pkgfile
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-03-20 19:30:36 +0100
committerpiernov <piernov@piernov.org>2012-03-20 19:30:36 +0100
commitdea3bf930afb9987f2859f74cfdd590d58b044d9 (patch)
treea3ac617e5ff445b07f847614c772ca19d64804b7 /tmux/Pkgfile
parent4775b0123f7db31f1273f177bb8e0b3ffa726210 (diff)
parentc1f0538723a4301bf4711f5d1b4384f27e5547a7 (diff)
downloadnutyx-extra-dea3bf930afb9987f2859f74cfdd590d58b044d9.tar.gz
nutyx-extra-dea3bf930afb9987f2859f74cfdd590d58b044d9.tar.bz2
nutyx-extra-dea3bf930afb9987f2859f74cfdd590d58b044d9.tar.xz
nutyx-extra-dea3bf930afb9987f2859f74cfdd590d58b044d9.zip
Merge branch 'master' of http://kiao.no-ip.info/NuTyX/git/nutyx-extra
Diffstat (limited to 'tmux/Pkgfile')
-rw-r--r--tmux/Pkgfile29
1 files changed, 15 insertions, 14 deletions
diff --git a/tmux/Pkgfile b/tmux/Pkgfile
index 80c2752d0..df7240260 100644
--- a/tmux/Pkgfile
+++ b/tmux/Pkgfile
@@ -1,24 +1,25 @@
-# Description: Multiplexeur de terminal
+# Description: Multiplexeur de terminal
# URL: http://tmux.sourceforge.net/
-# Maintainer: NuTyX core team
-# Packager: piernov <piernov@piernov.org>
-# Depends on: libevent, ncurses
-# Run on: libevent,ncurses
+# Maintainer:
+# Packager: lesibel at free dot fr
+# Depends on: ncurses,libevent
+# Run on: ncurses,libevent
name=tmux
-version=1.5
+version=1.6
release=1
-source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
+source=( http://downloads.sourceforge.net/tmux/$name-$version.tar.gz
+ LICENCE)
build() {
- cd $name-$version
+ cd $name-*
./configure --prefix=/usr
make
- make install DESTDIR=$PKG
-
+ make DESTDIR=$PKG install
install -Dm644 examples/tmux.vim $PKG/usr/share/vim/vimfiles/syntax/tmux.vim
- install -dm755 $PKG/usr/share/tmux/
- install -m644 examples/* $PKG/usr/share/tmux/
- mkdir -p $PKG/etc/bash_completion.d/
- mv $PKG/usr/share/tmux/bash_completion_tmux.sh $PKG/etc/bash_completion.d/tmux
+ install -Dm644 ../LICENCE $PKG/usr/share/licenses/tmux/LICENCE
+ install -dm755 $PKG/usr/share/tmux/
+ install -m644 examples/* $PKG/usr/share/tmux/
+ mkdir -p $PKG/etc/bash_completion.d/
+ mv $PKG/usr/share/tmux/bash_completion_tmux.sh $PKG/etc/bash_completion.d/tmux
}