1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 11:01:50 +00:00
openmptcprouter-feeds/tsping/Makefile

39 lines
896 B
Makefile
Raw Normal View History

2023-06-01 17:54:32 +00:00
include $(TOPDIR)/rules.mk
PKG_NAME:=tsping
PKG_VERSION:=0.2.3
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/Lochnair/tsping
PKG_SOURCE_VERSION:=2560d79c95154d2e2c9aa6725135f6fc5cf091d7
PKG_MAINTAINER:=Nils Andreas Svee <contact@lochnair.net>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE.md
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
PKG_BUILD_DEPENDS:=!USE_GLIBC:argp-standalone
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/meson.mk
define Package/tsping
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Utility for sending timestamp pings
URL:=https://github.com/Lochnair/tsping
endef
define Package/tsping/description
A simple application to send ICMP echo/timestamp requests
endef
define Package/tsping/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(MESON_BUILD_DIR)/tsping $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,tsping))