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
2021-04-14 14:29:49 +03:00
pkgver=0.4
2021-01-27 19:54:21 +02:00
pkgrel=1
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)
2021-04-14 14:29:49 +03:00
sha256sums=('048391b7a988d7581c972167cba849ab58d63ac118f0d3ad204275f54a8df337')
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
}