Root/package/network/utils/owipcalc/Makefile

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

Archive Download this file



interactive