2
0
Fork 0
bootterm/PKGBUILD

22 lines
604 B
Bash
Raw Normal View History

2020-12-14 20:09:51 +02:00
# Maintainer: Popolon <popolon@popolon.org>
pkgname=bootterm
2020-12-19 01:10:18 +02:00
pkgver=0.2
pkgrel=2
2020-12-14 20:09:51 +02:00
pkgdesc="Simple, reliable and powerful terminal designed to ease connection to ephemeral serial ports"
arch=('x86_64' 'armv7h' 'armv8')
url="https://github.com/wtarreau/bootterm/"
license=('MIT')
source=(https://github.com/wtarreau/$pkgname/archive/v${pkgver}.tar.gz)
2020-12-19 01:10:18 +02:00
sha256sums=('5beef823c9655f09555bfe4a9ea64e81f51f10582f64655a0fe939a1542e53d3')
2020-12-14 20:09:51 +02:00
build() {
cd $pkgname-$pkgver
make V=1 CFLAGS="$CFLAGS $CPPFLAGS" LDFLAGS="$LDFLAGS"
2020-12-14 20:09:51 +02:00
}
package() {
cd $pkgname-$pkgver
make install DESTDIR="$pkgdir" PREFIX=/usr
}