1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-12 18:41:51 +00:00
openmptcprouter-feeds/tsping/Makefile
Ycarus (Yannick Chabanois) 9348ce096b Update tsping
2024-04-11 11:09:42 +02:00

38 lines
896 B
Makefile

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:=0b5884b1d20498a409ebd1fc529d8be97f6ef357
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))