30 lines
872 B
Bash
30 lines
872 B
Bash
# Template file for 'tmux'
|
|
pkgname=tmux
|
|
version=3.2a
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="byacc automake pkg-config"
|
|
makedepends="libevent-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=551553a4f82beaa8dadc9256800bcc284d7c000081e47aa6ecbb6ff36eacd05f
|
|
|
|
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
|
|
}
|