aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libmodbus/APKBUILD
blob: a95a3425ff371bdf68386377ae4a477a53277051 (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
30
# Contributor: Oz Tiram <oz.tiram@gmail.com>
# Maintainer: Oz Tiram <oz.tiram@gmail.com>
pkgname=libmodbus
pkgver=3.1.4
pkgrel=0
pkgdesc="Modbus library which supports RTU communication over a serial line or a TCP link"
url="https://libmodbus.org/"
source="https://libmodbus.org/releases/$pkgname-$pkgver.tar.gz"
arch="all"
license="LGPL-2.1-or-later"
makedepends="linux-headers"
subpackages="$pkgname-dev $pkgname-doc"

build() {
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info
	make
}

check() {
	make check
}

package() {
	make DESTDIR="$pkgdir" install
}
sha512sums="63f73894b27704f5e5b3ca0a364cc366c5b5d24903bb24384155890cf06c0f8e5c707a435a38129402ff6628ef3d611dd0db82f840b79cf1d205ebed2ac5681c  libmodbus-3.1.4.tar.gz"