mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
A minimal C library handling OS-specific details when using serial ports https://sigrok.org/wiki/Libserialport
33 lines
794 B
Plaintext
33 lines
794 B
Plaintext
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
|
|
|
pkgname="libserialport"
|
|
pkgver=0.1.1
|
|
pkgrel=0
|
|
pkgdesc="A minimal C library handling OS-specific details when using serial ports"
|
|
url="https://sigrok.org/wiki/Libserialport"
|
|
makedepends="linux-headers"
|
|
depends=""
|
|
arch="all"
|
|
license="GPL-3.0-only"
|
|
source="http://sigrok.org/download/source/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
subpackages="$pkgname-dev"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "${builddir}"
|
|
./configure --prefix=/usr/
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${builddir}"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${builddir}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="7d379d1099173841e6d4df04c8c12dc6a4ebdfa0323ef35da6f3dea20db55d4f6ad81c1f6679f5aac7fe83270176428a817daa8627c336505335a07e06350a85 libserialport-0.1.1.tar.gz"
|