31 lines
925 B
Bash
31 lines
925 B
Bash
# Template file for 'tmux'
|
|
pkgname=tmux
|
|
version=3.3a
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--enable-utempter"
|
|
hostmakedepends="byacc automake pkg-config"
|
|
makedepends="libevent-devel libutempter-devel ncurses-devel"
|
|
depends="ncurses-base"
|
|
short_desc="Terminal Multiplexer"
|
|
maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
|
|
license="ISC"
|
|
homepage="https://tmux.github.io"
|
|
changelog="https://raw.githubusercontent.com/tmux/tmux/master/CHANGES"
|
|
distfiles="https://github.com/tmux/tmux/releases/download/${version}/tmux-${version}.tar.gz"
|
|
checksum=e4fd347843bd0772c4f48d6dde625b0b109b7a380ff15db21e97c11a4dcdf93f
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
{
|
|
echo ' * Copyright (c) 2007-2021 Nicholas Marriott <nicholas.marriott@gmail.com>'
|
|
grep -rh 'Copyright (c) .*[0-9] [a-zA-Z]' *.c compat/*.c |
|
|
grep -v 'Nicholas Marriott' | sort -u
|
|
cat COPYING
|
|
} >LICENSE
|
|
vlicense LICENSE
|
|
}
|