diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-08-15 18:55:51 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-08-15 18:55:51 +0000 |
commit | 404ca36e6035897bfbe1c93a2983b2b191217349 (patch) | |
tree | 89c4c720f10c66d0fc1e81e5c6c565d7b505e9c0 /package/maccalc/Makefile | |
parent | 67e480971cae6d0d4b586012c413f7caeac228e4 (diff) | |
download | upstream-404ca36e6035897bfbe1c93a2983b2b191217349.tar.gz upstream-404ca36e6035897bfbe1c93a2983b2b191217349.tar.bz2 upstream-404ca36e6035897bfbe1c93a2983b2b191217349.zip |
package/maccalc: a simple mac address manipulation utility
SVN-Revision: 28004
Diffstat (limited to 'package/maccalc/Makefile')
-rw-r--r-- | package/maccalc/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/package/maccalc/Makefile b/package/maccalc/Makefile new file mode 100644 index 0000000000..09cdfc8c2a --- /dev/null +++ b/package/maccalc/Makefile @@ -0,0 +1,47 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=maccalc +PKG_RELEASE:=1 + +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) + +include $(INCLUDE_DIR)/package.mk + +define Package/maccalc + SECTION:=utils + CATEGORY:=Utilities + TITLE:=MAC address calculation +endef + +define Package/maccalc/description + This package contains a MAC address manipulation utility. +endef + +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + +define Build/Configure +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS) -Wall" \ + LDFLAGS="$(TARGET_LDFLAGS)" +endef + +define Package/maccalc/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/maccalc $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,maccalc)) |