mirror of
https://github.com/openwrt/packages.git
synced 2025-07-06 04:43:08 +00:00
With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
#
|
|
# 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.5
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_SOURCE_URL:=https://github.com/mfontanini/libtins
|
|
PKG_MIRROR_HASH:=85c5a15beca56552ba3f33e10f2a82ee4c47be2b3334d163304362188a37b13a
|
|
|
|
PKG_MAINTAINER:= Steven Hessing <steven.hessing@gmail.com>
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
CMAKE_INSTALL:=1
|
|
PKG_BUILD_FLAGS:=gc-sections lto
|
|
|
|
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 +LIBTINS_ENABLE_PCAP:libpcap +LIBTINS_ENABLE_WPA2:libopenssl
|
|
MENU:=1
|
|
endef
|
|
|
|
define Package/libtins/config
|
|
source "$(SOURCE)/Config.in"
|
|
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=$(if $(CONFIG_LIBTINS_ENABLE_ACK_TRACKER),ON,OFF) \
|
|
-DLIBTINS_ENABLE_CXX11=$(if $(CONFIG_LIBTINS_ENABLE_CXX11),ON,OFF) \
|
|
-DLIBTINS_ENABLE_DOT11=$(if $(CONFIG_LIBTINS_ENABLE_DOT11),ON,OFF) \
|
|
-DLIBTINS_ENABLE_PCAP=$(if $(CONFIG_LIBTINS_ENABLE_PCAP),ON,OFF) \
|
|
-DLIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA=$(if $(CONFIG_LIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA),ON,OFF) \
|
|
-DLIBTINS_ENABLE_WPA2=$(if $(CONFIG_LIBTINS_ENABLE_WPA2),ON,OFF)
|
|
|
|
TARGET_LDFLAGS += -Wl,--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))
|