opt/tmux/Pkgfile
Juergen Daubert e013098f43 [notify] tmux: update to 2.4
Several incompatible changes, see
https://raw.githubusercontent.com/tmux/tmux/master/CHANGES

Found another functional change which is not documented above.
The command 'new' in the configuration file immediately starts
a session with 'tmux start', to get the old behaviour use
'new -d' instead. See https://github.com/tmux/tmux/issues/869
2017-04-23 12:32:51 +02:00

17 lines
393 B
Plaintext

# Description: Terminal multiplexer like screen
# URL: http://tmux.github.io/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses libevent
name=tmux
version=2.4
release=1
source=(https://github.com/tmux/tmux/releases/download/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}