opt/tmux/Pkgfile

17 lines
377 B
Plaintext
Raw Normal View History

2009-04-23 11:22:29 +02:00
# Description: Terminal multiplexer like screen
2021-04-13 19:33:17 +02:00
# URL: http://tmux.github.io/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses libevent
2009-04-23 11:22:29 +02:00
name=tmux
2022-06-09 15:58:25 +02:00
version=3.3a
2009-04-23 11:22:29 +02:00
release=1
2019-04-25 11:58:16 +02:00
source=(https://github.com/tmux/tmux/releases/download/${version%-*}/$name-$version.tar.gz)
2009-04-23 11:22:29 +02:00
build() {
2021-04-13 19:33:17 +02:00
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2009-04-23 11:22:29 +02:00
}