summaryrefslogtreecommitdiffstats
path: root/main/tmux/APKBUILD
blob: 7edc932264c97b8b3e3488fdce60450572e454f4 (plain)
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
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=tmux
pkgver=0.9
pkgrel=0
pkgdesc="Tool to control multiple terminals from a single terminal"
url="http://tmux.sourceforge.net/"
license="BSD"
depends=""
makedepends="ncurses-dev"
install=
subpackages="$pkgname-doc"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
	build.patch"

build() {
	cd "$srcdir/$pkgname-$pkgver"
	patch -p1 < ../build.patch || return 1

	./configure 
	make || return 1
	make DESTDIR="$pkgdir" PREFIX=/usr install

}

md5sums="2d1df646a6977bb7d9b20e53770d5593  tmux-0.9.tar.gz
373cabbc35601c3ee71fde0877f5fe83  build.patch"