You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1004 B

  1. #
  2. # Copyright (C) 2012 Jo-Philipp Wich <jo@mein.io>
  3. #
  4. # This is free software, licensed under the Apache 2 license.
  5. #
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=owipcalc
  8. PKG_RELEASE:=6
  9. PKG_LICENSE:=Apache-2.0
  10. include $(INCLUDE_DIR)/package.mk
  11. define Package/owipcalc
  12. SECTION:=utils
  13. CATEGORY:=Utilities
  14. TITLE:=Simple IPv4/IPv6 address calculator
  15. MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
  16. endef
  17. define Package/owipcalc/description
  18. The owipcalc utility supports a number of calculations and tests to work
  19. with ip-address ranges, this is useful for scripts that e.g. need to
  20. partition ipv6-prefixes into small subnets or to calculate address ranges
  21. for dhcp pools.
  22. endef
  23. define Build/Configure
  24. endef
  25. define Build/Compile
  26. $(TARGET_CC) $(TARGET_CFLAGS) \
  27. -o $(PKG_BUILD_DIR)/owipcalc $(PKG_BUILD_DIR)/owipcalc.c
  28. endef
  29. define Package/owipcalc/install
  30. $(INSTALL_DIR) $(1)/usr/bin
  31. $(INSTALL_BIN) $(PKG_BUILD_DIR)/owipcalc $(1)/usr/bin/owipcalc
  32. endef
  33. $(eval $(call BuildPackage,owipcalc))