pcapsipdump: compile fixes
[feed/telephony.git] / net / pcapsipdump / Makefile
1 #
2 # Copyright (C) 2009-2018 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pcapsipdump
11 PKG_VERSION:=0.2
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/pcapsipdump
16 PKG_HASH:=4d4dc2664963c08de40da47ca0dcd1eeae09edc42241bd6daa7ff8c59089dce9
17
18 PKG_LICENSE:=GPL-2.0+
19 PKG_LICENSE_FILES:=LICENSE
20
21 include $(INCLUDE_DIR)/uclibc++.mk
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/pcapsipdump
25 SECTION:=net
26 CATEGORY:=Network
27 SUBMENU:=Telephony
28 DEPENDS:=+libpcap $(CXX_DEPENDS)
29 TITLE:=SIP sessions dumping tool
30 URL:=http://sourceforge.net/projects/pcapsipdump/
31 endef
32
33 define Package/pcapsipdump/description
34 pcapsipdump is a tool for dumping SIP sessions (+RTP traffic, if available) to disk in a
35 fashion similar to "tcpdump -w" (format is exactly the same), but one file per sip session
36 (even if there is thousands of concurrect SIP sessions).
37 endef
38
39 MAKE_FLAGS += \
40 CC="$(TARGET_CXX)" \
41 CPPFLAGS="$(TARGET_CXXFLAGS) -fno-rtti $(TARGET_CPPFLAGS)" \
42 LIBS="-lpcap"
43
44 define Package/pcapsipdump/install
45 $(INSTALL_DIR) $(1)/usr/bin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/pcapsipdump $(1)/usr/bin/
47 endef
48
49 $(eval $(call BuildPackage,pcapsipdump))