summaryrefslogtreecommitdiffstats
path: root/testing/mosh/APKBUILD
blob: 89349f5fff12062ca22e6883a538490ae14657c1 (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
# Contributor: Francesco Colista <francesco.colista@gmail.com>
# Maintainer: Francesco Colista <francesco.colista@gmail.com>
pkgname=mosh
pkgver=1.2.3
pkgrel=0
pkgdesc="mobile shell (mosh) surviving disconnects with local echo and line editing"
url="http://mosh.mit.edu"
arch="all"
license="GPL3"
depends="perl"
depends_dev=""
makedepends="ncurses-dev zlib-dev openssl-dev perl-dev perl-io-tty protobuf-dev"
install=""
subpackages="$pkgname-doc"
source="https://github.com/downloads/keithw/$pkgname/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc
	make || return 1
}

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

md5sums="39c20391c84e639fcb51581c56cee762  mosh-1.2.3.tar.gz"