2009-04-23 11:22:29 +02:00
|
|
|
# Description: Terminal multiplexer like screen
|
2015-10-19 11:53:31 +02:00
|
|
|
# URL: http://tmux.github.io/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2010-03-11 17:40:32 +01:00
|
|
|
# Depends on: ncurses libevent
|
2009-04-23 11:22:29 +02:00
|
|
|
|
|
|
|
name=tmux
|
2016-04-12 11:27:34 +02:00
|
|
|
version=2.2
|
2009-04-23 11:22:29 +02:00
|
|
|
release=1
|
2015-10-19 11:53:31 +02:00
|
|
|
source=(https://github.com/tmux/tmux/releases/download/$version/$name-$version.tar.gz)
|
2009-04-23 11:22:29 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2016-04-12 11:27:34 +02:00
|
|
|
./configure --prefix=/usr
|
2009-04-23 11:22:29 +02:00
|
|
|
make
|
2011-07-10 12:40:56 +02:00
|
|
|
make DESTDIR=$PKG install
|
2009-04-23 11:22:29 +02:00
|
|
|
}
|