replace lots of manual install commands with INSTALL_* variables
[openwrt/svn-archive/archive.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 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/wx200d
26 SECTION:=utils
27 CATEGORY:=Utilities
28 DEPENDS:=+libpq
29 TITLE:=weather station data collector
30 DESCRIPTION:=\
31 wx200d is a weather station data collector and server daemon \\\
32 for the WX200, WM918, WMR918 and WMR968 weather station \\\
33 hardware.
34 URL:=http://wx200d.sourceforge.net/
35 endef
36
37 # uses GNU configure
38
39 define Build/Compile
40 $(MAKE) -C $(PKG_BUILD_DIR) \
41 DESTDIR="$(PKG_INSTALL_DIR)" \
42 all install
43 endef
44
45 define Package/wx200d/install
46 $(INSTALL_DIR) $(1)/usr/bin
47 $(CP) $(PKG_INSTALL_DIR)/usr/bin/wx200 \
48 $(PKG_INSTALL_DIR)/usr/bin/wxstdout \
49 $(PKG_INSTALL_DIR)/usr/bin/wxfilter \
50 $(PKG_INSTALL_DIR)/usr/bin/wxdebug \
51 $(1)/usr/bin/
52 $(INSTALL_DIR) $(1)/usr/sbin/
53 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/wx200d \
54 $(PKG_INSTALL_DIR)/usr/sbin/wxread \
55 $(1)/usr/sbin/
56 endef
57
58 $(eval $(call BuildPackage,wx200d))