1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 03:43:53 +02:00
openwrt-packages/libs/libtins/Makefile

60 lines
1.5 KiB
Makefile
Raw Normal View History

#
# Copyright (C) 2017 Steven Hessing
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libtins
PKG_VERSION:=4.2
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/mfontanini/libtins/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=a9fed73e13f06b06a4857d342bb30815fa8c359d00bd69547e567eecbbb4c3a1
PKG_MAINTAINER:= Steven Hessing <steven.hessing@gmail.com>
PKG_LICENSE:=BSD-2-Clause
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_PARALLEL:=1
CMAKE_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
define Package/libtins
SECTION:=net
CATEGORY:=Libraries
TITLE:=libtins
URL:=https://libtins.github.io/
DEPENDS:=+libstdcpp +libpcap
endef
define Package/libtins/description
libtins is a high-level, multiplatform C++ network packet sniffing and crafting library.
endef
CMAKE_OPTIONS += \
-D_RUN_RESULT_VAR=FORCE \
-DLIBTINS_BUILD_EXAMPLES=OFF \
-DLIBTINS_BUILD_TESTS=OFF \
-DLIBTINS_ENABLE_ACK_TRACKER=OFF \
-DLIBTINS_ENABLE_CXX11=ON \
-DLIBTINS_ENABLE_DOT11=OFF \
-DLIBTINS_ENABLE_PCAP=ON \
-DLIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA=OFF \
-DLIBTINS_ENABLE_WPA2=OFF
TARGET_CXXFLAGS += -ffunction-sections -fdata-sections -flto
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
define Package/libtins/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtins.so.* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libtins))