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
# URL: https://tmux.github.io
# Packager: tnut at nutyx.org
# Packager: milisarge
# Depends on: libevent
name=tmux
version=2.0
version=2.2
release=1
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/
install -m644 examples/* $PKG/usr/share/tmux/
install -Dm644 examples/tmux.vim $PKG/usr/share/vim/vimfiles/syntax/tmux.vim
install -d $PKG/usr/share/bash-completion/completions/
mv $PKG/usr/share/tmux/bash_completion_tmux.sh \
$PKG/usr/share/bash-completion/completions/tmux
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}