summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f016e03277837ab34e0f382a80af0bab2be4e9e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Majenko <matt@majenko.co.uk>
pkgname=ttynvt-git
pkgver=0.16
pkgrel=1
pkgdesc="Virtual Network Terminal supporting the Com Port Control Option (RFC2217)"
arch=('any')
url=https://gitlab.com/lars-thrane-as/ttynvt
license=('BSD')

source=("git+https://gitlab.com/lars-thrane-as/ttynvt")
cksums=(SKIP)

build() {
	cd "ttynvt"
	autoreconf -fi
	./configure --prefix=/usr
	make
}

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