1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-12 10:31:51 +00:00
openmptcprouter-feeds/tcptraceroute/Makefile

48 lines
1.2 KiB
Makefile
Raw Permalink Normal View History

2020-06-26 19:24:06 +00:00
#
# Copyright (C) 2006 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:=tcptraceroute
PKG_REALVERSION:=1.5beta7
PKG_VERSION:=1.5_beta7
2020-06-26 19:24:06 +00:00
PKG_RELEASE:=1
2024-08-27 14:48:47 +00:00
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=tcptraceroute-$(PKG_REALVERSION)
2024-08-27 14:48:47 +00:00
PKG_SOURCE_URL:=https://github.com/mct/tcptraceroute.git
2020-06-26 19:24:06 +00:00
include $(INCLUDE_DIR)/package.mk
define Package/tcptraceroute
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpcap +libnet-1.2.x
TITLE:=A traceroute implementation using TCP packets.
URL:=http://michael.toren.net/code/tcptraceroute/
endef
define Build/Configure
$(call Build/Configure/Default, \
, \
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/lib/libnet-1.1.x/include" \
LDFLAGS="$$$$LDFLAGS -L$(STAGING_DIR)/usr/lib/libnet-1.1.x/lib" \
PATH="$(STAGING_DIR)/usr/lib/libnet-1.1.x/bin:$$$$PATH" \
)
endef
2024-08-27 14:48:47 +00:00
define Build/Compile
2020-06-26 19:24:06 +00:00
$(MAKE) -C $(PKG_BUILD_DIR)
endef
2024-08-27 14:48:47 +00:00
define Package/tcptraceroute/install
2020-06-26 19:24:06 +00:00
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tcptraceroute $(1)/usr/bin/
endef
$(eval $(call BuildPackage,tcptraceroute))