Merge pull request #13617 from PolynomialDivision/sipcalc

sipcalc: add IPv4/IPv6 calculator
This commit is contained in:
Rosen Penev 2020-10-19 16:15:46 -07:00 committed by GitHub
commit 5f43e3c1c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

41
utils/sipcalc/Makefile Normal file
View file

@ -0,0 +1,41 @@
#
# This software is licensed under the Public Domain.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=sipcalc
PKG_SOURCE_DATE:=2014-10-24
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/sii/sipcalc
PKG_SOURCE_VERSION:=9b97dbca1a0ccaaeb322b8f0a4100dc234cfcc8c
PKG_MIRROR_HASH:=fac4a3e967055bac734bda86c34d318c9bf8dc17b0feb24f556b1d5af57d2896
PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_PARALLEL:=1
PKG_FIXUP:=autoreconf
include $(INCLUDE_DIR)/package.mk
define Package/sipcalc
SECTION:=utils
CATEGORY:=Utilities
TITLE:=IPv4/IPv6 Calculator
URL:=https://github.com/sii/sipcalc
endef
define Package/sipcalc/description
Sipcalc is an advanced ip calculator supporting both IPv4 and IPv6.
endef
define Package/sipcalc/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/sipcalc $(1)/usr/sbin/sipcalc
endef
$(eval $(call BuildPackage,sipcalc))