1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 03:43:53 +02:00
openwrt-packages/libs/libmodbus/Makefile
Michael Heimpold 0a4e93a4d9 libmodbus: upgrade to 3.1.4
While at, also disable the build of the unit tests.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2016-05-31 21:42:16 +02:00

57 lines
1.4 KiB
Makefile

#
# Copyright (C) 2006-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libmodbus
PKG_VERSION:=3.1.4
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://libmodbus.org/releases
PKG_MD5SUM:=b1a8fd3a40d2db4de51fb0cbcb201806
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
PKG_LICENSE:=GPL-3.0+ LGPL-2.1+
PKG_LICENSE_FILES:=COPYING COPYING.LESSER
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/libmodbus
SECTION:=libs
CATEGORY:=Libraries
URL:=http://www.libmodbus.org
TITLE:=libmodbus
endef
define Package/libmodbus/description
A Modbus library for Linux, Mac OS X, FreeBSD, QNX and Win32.
endef
CONFIGURE_ARGS += --without-documentation --disable-tests
TARGET_CFLAGS += $(FPIC)
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/modbus $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmodbus.{so*,la} $(1)/usr/lib/
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libmodbus.pc $(1)/usr/lib/pkgconfig/
endef
define Package/libmodbus/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmodbus.so* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libmodbus))