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

38 lines
954 B
Makefile
Raw Normal View History

2018-10-26 14:52:11 +00:00
#
2023-11-22 19:07:54 +00:00
# Copyright (C) 2018-2023 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
2018-10-26 14:52:11 +00:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=ipcalc
PKG_RELEASE:=1
2023-11-22 19:07:54 +00:00
PKG_SOURCE_URL:=https://gitlab.com/ipcalc/ipcalc.git
2018-10-26 14:52:11 +00:00
PKG_SOURCE_PROTO:=git
2023-11-22 19:07:54 +00:00
PKG_SOURCE_VERSION:=d8a2fe29a89f0f9f0d44a7b15e260c74f0e8388b
2018-10-26 14:52:11 +00:00
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
PKG_LICENSE:=GPL-2.0
2023-11-22 19:07:54 +00:00
PKG_LICENSE_FILE:=COPYING
2018-10-26 14:52:11 +00:00
include $(INCLUDE_DIR)/package.mk
MAKE_FLAGS += USE_GEOIP=no USE_MAXMIND=no
define Package/ipcalc
SECTION:=net
CATEGORY:=Network
MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
TITLE:=Modern tool to assist in network address calculations for IPv4 and IPv6.
endef
define Package/ipcalc/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ipcalc $(1)/usr/sbin/ipcalc
endef
$(eval $(call BuildPackage,$(PKG_NAME)))