tmux.paketlendi

This commit is contained in:
milisman 2016-07-29 01:54:15 +03:00
parent f1f0114037
commit 9ed0ef3d02
1 changed files with 8 additions and 13 deletions

View File

@ -1,21 +1,16 @@
# Description: A terminal multiplexer # Description: A terminal multiplexer
# URL: https://tmux.github.io # URL: https://tmux.github.io
# Packager: tnut at nutyx.org # Packager: milisarge
# Depends on: libevent # Depends on: libevent
name=tmux name=tmux
version=2.0 version=2.2
release=1 release=1
source=(https://github.com/tmux/tmux/releases/download/$version/$name-$version.tar.gz) source=(https://github.com/tmux/tmux/releases/download/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make DESTDIR=$PKG install
install -dm755 $PKG/usr/share/tmux/ build() {
install -m644 examples/* $PKG/usr/share/tmux/ cd $name-$version
install -Dm644 examples/tmux.vim $PKG/usr/share/vim/vimfiles/syntax/tmux.vim ./configure --prefix=/usr
install -d $PKG/usr/share/bash-completion/completions/ make
mv $PKG/usr/share/tmux/bash_completion_tmux.sh \ make DESTDIR=$PKG install
$PKG/usr/share/bash-completion/completions/tmux
} }