From a7db7c16d178f8c658ee068e1960dac8401f216d Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 27 Mar 2010 17:21:02 +0000 Subject: [PATCH] [package] add fowsr (#6952) git-svn-id: svn://svn.openwrt.org/openwrt/packages@20519 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/fowsr/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 utils/fowsr/Makefile diff --git a/utils/fowsr/Makefile b/utils/fowsr/Makefile new file mode 100644 index 000000000..43b98472b --- /dev/null +++ b/utils/fowsr/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2010 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:=fowsr +PKG_VERSION:=1.0 +PKG_RELEASE:=20100323 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.gz +PKG_SOURCE_URL:=http://fowsr.googlecode.com/files +PKG_MD5SUM:=74456362f8256a81659ef64400d84352 + +include $(INCLUDE_DIR)/package.mk + +define Package/fowsr + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libusb + TITLE:=Fine Offset Wireless Weather Station Reader + URL:=http://fowsr.googlecode.com/ +endef + +define Package/fowsr/description + fowsr is a USB Data Collector application for WH1080 compatible + weather stations. + Output formats includes Wunderground.com and pywws. + See http://www.foshk.com for details and download of the + EasyWeather application. + All weather stations that can use the EasyWeather application + will work with this software. +endef + +CONFIGURE_ARGS += \ + --with-linux-headers="$(LINUX_DIR)" \ + +define Package/fowsr/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/fowsr $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,fowsr))