summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorJoerg Seitter <oss@seitter.net>2020-04-01 21:26:44 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2020-04-01 21:34:39 +0200
commitab2c74319fcc375bfbd63ce50d4e67b6a7eaff7d (patch)
tree9ec0a3b652c92bdf7493acdf6e680e6d9697c3ec /package
parent0b4f0dc262dcdc7637390a306ca4ae6d85af06ba (diff)
new package libmodbus
Signed-off-by: Joerg Seitter <oss@seitter.net>
Diffstat (limited to 'package')
-rw-r--r--package/libmodbus/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/libmodbus/Makefile b/package/libmodbus/Makefile
new file mode 100644
index 000000000..ee8e82b55
--- /dev/null
+++ b/package/libmodbus/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= libmodbus
+PKG_VERSION:= 3.1.6
+PKG_RELEASE:= 1
+PKG_HASH:= d7d9fa94a16edb094e5fdf5d87ae17a0dc3f3e3d687fead81835d9572cf87c16
+PKG_DESCR:= MODBUS protocol library
+PKG_SECTION:= libs/net
+PKG_URL:= http://libmodbus.org
+PKG_SITES:= https://libmodbus.org/releases/
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBMODBUS,libmodbus,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
+
+CONFIGURE_ARGS+= --without-documentation --disable-tests
+
+libmodbus-install:
+ $(INSTALL_DIR) $(IDIR_LIBMODBUS)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libmodbus*.so* \
+ $(IDIR_LIBMODBUS)/usr/lib
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk