48 lines
1.2 KiB
Makefile
Executable File
48 lines
1.2 KiB
Makefile
Executable File
#
|
|
# Copyright (C) 2006 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:=bwm
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
#PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/b/bwm
|
|
#PKG_MD5SUM:=51021a036acb92d2bda0c0c0483f9552
|
|
|
|
#PKG_SOURCE_URL:=$(SVN_REPOSITORY_ROOT)/openwrt/dl
|
|
PKG_SOURCE_URL:=@ZyXEL_SITE/opensource/network/utils
|
|
#PKG_SOURCE_PROTO:=svn_pkg
|
|
#PKG_SOURCE_VERSION:=HEAD
|
|
DL_DIR:=$(TOPDIR)/dl
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION).orig
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/bwm
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A very tiny bandwidth monitor
|
|
URL:=http://ftp.debian.org/debian/pool/main/b/bwm
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(PKG_BUILD_DIR)/bwm.c -o $(PKG_BUILD_DIR)/bwm
|
|
endef
|
|
|
|
define Package/bwm/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bwm $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/bwm.init $(1)/etc/init.d/bwm
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,bwm))
|