aboutsummaryrefslogtreecommitdiffstats
path: root/main/byobu/APKBUILD
blob: 41627610615e9362133c8b05413a45d06ea1148e (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
28
29
30
31
32
33
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=byobu
pkgver=5.127
pkgrel=0
pkgdesc="An enhancement of the GNU Screen"
url="https://launchpad.net/byobu"
arch="noarch"
license="GPL-3.0"
depends="python3 tmux"
subpackages="$pkgname-doc"
source="https://launchpad.net/byobu/trunk/$pkgver/+download/byobu_$pkgver.orig.tar.gz"
builddir="$srcdir"/$pkgname-$pkgver

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="08de420127a445c25368039333c77f82aa8ba1cdfaa9304a933ceeadbf20981abc57d7611fac712702feea2e54614acd8f4ee556c2ea734d79df5f346772db94  byobu_5.127.orig.tar.gz"