mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 18:17:16 +08:00
27 lines
776 B
Bash
27 lines
776 B
Bash
pkgname=tmux
|
|
pkgver=2.3
|
|
pkgrel=2
|
|
pkgdesc='A terminal multiplexer, intended as an alternative to GNU screen'
|
|
arch=('x86_64')
|
|
url='http://sourceforge.net/projects/tmux/'
|
|
screenshot='http://tmux.sourceforge.net/tmux3.png'
|
|
license=('BSD')
|
|
depends=('ncurses' 'libevent' 'libutempter')
|
|
source=("https://github.com/tmux/tmux/releases/download/${pkgver}/tmux-${pkgver}.tar.gz"
|
|
LICENSE)
|
|
sha256sums=('55313e132f0f42de7e020bf6323a1939ee02ab79c48634aa07475db41573852b'
|
|
'b5de80619e4884ced2dfe0a96020e85dcfb715a831ecdfdd7ce8c97b5a6ff2cc')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/tmux/LICENSE"
|
|
}
|