2010-03-27 17:21:02 +00:00
|
|
|
#
|
|
|
|
# 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
|
2010-07-31 11:39:06 +00:00
|
|
|
PKG_RELEASE:=20100718
|
2010-03-27 17:21:02 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://fowsr.googlecode.com/files
|
2010-07-31 11:39:06 +00:00
|
|
|
PKG_MD5SUM:=34a53f0ba60a62636feef3e09d9e4312
|
2010-03-27 17:21:02 +00:00
|
|
|
|
|
|
|
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.
|
2010-07-31 11:39:06 +00:00
|
|
|
Output formats includes XML, Wunderground.com and pywws.
|
2010-03-27 17:21:02 +00:00
|
|
|
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/
|
2010-07-31 11:39:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wunderground.sh $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/pywws.sh $(1)/usr/bin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/xml.sh $(1)/usr/bin/
|
2010-03-27 17:21:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,fowsr))
|