packaged the atd daemon
[packages.git] / utils / wx200d / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=wx200d
12 PKG_VERSION:=1.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/wx200d
17 PKG_MD5SUM:=0f90c099dddcdd46ac568d707822ec4c
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/wx200d
25   SECTION:=utils
26   CATEGORY:=Utilities
27   DEPENDS:=+libpq
28   TITLE:=weather station data collector
29   URL:=http://wx200d.sourceforge.net/
30 endef
31
32 define Package/wx200d/description
33         wx200d is a weather station data collector and server daemon 
34         for the WX200, WM918, WMR918 and WMR968 weather station 
35         hardware.
36 endef
37
38 # uses GNU configure
39
40 define Build/Compile
41         $(MAKE) -C $(PKG_BUILD_DIR) \
42                 DESTDIR="$(PKG_INSTALL_DIR)" \
43                 all install
44 endef
45
46 define Package/wx200d/install   
47         $(INSTALL_DIR) $(1)/usr/bin
48         $(CP)   $(PKG_INSTALL_DIR)/usr/bin/wx200 \
49                 $(PKG_INSTALL_DIR)/usr/bin/wxstdout \
50                 $(PKG_INSTALL_DIR)/usr/bin/wxfilter \
51                 $(PKG_INSTALL_DIR)/usr/bin/wxdebug \
52                 $(1)/usr/bin/
53         $(INSTALL_DIR) $(1)/usr/sbin/
54         $(CP)   $(PKG_INSTALL_DIR)/usr/sbin/wx200d \
55                 $(PKG_INSTALL_DIR)/usr/sbin/wxread \
56                 $(1)/usr/sbin/
57 endef
58
59 $(eval $(call BuildPackage,wx200d))