mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:57:16 +08:00
31 lines
922 B
Bash
31 lines
922 B
Bash
#
|
|
# Apps packages for Chakra, part of www.chakra-project.org
|
|
#
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: M Cigorraga (msx) <martincigorraga@gmail.com>
|
|
# (george) <rpubaddr0@gmail.com>
|
|
# (mornik) <mornik@gmail.com>
|
|
|
|
pkgname=tmux
|
|
pkgver=1.8
|
|
pkgrel=1
|
|
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')
|
|
source=("http://download.sourceforge.net/tmux/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('555c7cdc51bfbaa1c90fa0dc820e7ad89d8a4eb818e62d8ccf4637cc96e985ffd9c242b9ba092820c3fb96d09d65c46064ce361062e59ef2586b122e624bbbbb')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|