mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
80 lines
1.7 KiB
Bash
80 lines
1.7 KiB
Bash
SUMMARY="A groovy modbus library"
|
|
DESCRIPTION="libmodbus is a free software library to send or receive data with a \
|
|
device which respects the Modbus protocol. This library can use a serial port or \
|
|
an Ethernet connection. The functions included in the library have been derived \
|
|
from the Modicon Modbus Protocol Reference Guide which can be obtained from \
|
|
www.modbus.org."
|
|
HOMEPAGE="https://github.com/stephane/libmodbus"
|
|
COPYRIGHT="Stéphane Raimbault
|
|
Tobias Doerffel
|
|
Florian Forster
|
|
oldfaber
|
|
Hannu Vuolasaho
|
|
Michael Heimpold
|
|
Jimmy Bergström
|
|
Jakob Bysewski"
|
|
LICENSE="GNU LGPL v2.1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/stephane/libmodbus/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="fe0c141cd10d58bb848643f00f2d4b4005214f93312d7b66ac805fd369876651"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
libVersion="5.1.0"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%.*}"
|
|
|
|
PROVIDES="
|
|
libmodbus$secondaryArchSuffix = $portVersion
|
|
lib:libmodbus$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libmodbus${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libmodbus$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
libmodbus$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autogen.sh
|
|
LIBS=-lnetwork runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
rm $libDir/lib*.la
|
|
|
|
# prepare development lib links
|
|
prepareInstalledDevelLib libmodbus
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel $developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|