|
root / base / tmux
tmux Plain Text 41 lines 943 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/zsh
# Build script for tmux
set -e
cd "$SRCDIR"

export PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig:${PKG_CONFIG_PATH:-}"
export CPPFLAGS="-I$PREFIX/include"
export LDFLAGS="-L$PREFIX/lib -R$PREFIX/lib"
export LIBS="-lsendfile"

./configure \
    --prefix=$PREFIX

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
# tmux - Terminal multiplexer
# https://github.com/tmux/tmux

[package]
name = "tmux"
version = "3.3a"
release = 1
description = "Terminal multiplexer allowing multiple terminals in a single window"
url = "https://github.com/tmux/tmux"
license = "ISC"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = ["libevent", "ncurses"]
build = ["libevent", "ncurses"]

[[source]]
file = "tmux-3.3a.tar.gz"
urls = ["https://github.com/tmux/tmux/releases/download/3.3a/tmux-3.3a.tar.gz"]
checksum = "e4fd347843bd0772c4f48d6dde625b0b109b7a380ff15db21e97c11a4dcdf93f"


[build]
parallel = true