openwrt-packages/net/tctool/Makefile
juhosg c9f3d71c2e packages/tctool: fix whitespaces
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@40231 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-27 07:05:56 +00:00

48 lines
1.0 KiB
Makefile

#
# Copyright (C) 2008-2014 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:=tctool
PKG_VERSION:=0.9.7
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
PKG_SOURCE_URL:=http://download2.berlios.de/speedmodem50b
PKG_MD5SUM:=df38334206d4cad106e58bd71c6f1d9a
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/tctool
SECTION:=net
CATEGORY:=Network
TITLE:=TrendChip-Modem-Utility
URL:=http://speedmodem50b.berlios.de/
DEPENDS:=+libstdcpp
endef
define Package/tctool/description
tcTool provides access to the console-service of TrendChip-based
ADSL-Modems.
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)/src \
$(TARGET_CONFIGURE_OPTS) \
CXXFLAGS="$(TARGET_CXXFLAGS)" \
tctool
endef
define Package/tctool/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/tctool $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,tctool))