[packages] version bump of tinc to 1.0.17
[openwrt/svn-archive/archive.git] / net / ntripcaster / Makefile
1 #
2 # Copyright (C) 2011 segal.ubi.pt
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ntripcaster
11 PKG_VERSION:=0.1.5
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).zip
15 PKG_SOURCE_URL:=http://igs.bkg.bund.de/root_ftp/NTRIP/software/
16 PKG_MD5SUM:=8c85a6c31d8c5cdf2638fe103207a1fd
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/ntripcaster
21 SECTION:=net
22 CATEGORY:=Network
23 SUBMENU:=NTRIP
24 TITLE:=Standard Ntrip Broadcaster
25 URL:=http://igs.bkg.bund.de/ntrip/download
26 MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
27 DEPENDS:=+libpthread
28 endef
29
30 define Package/ntripcaster/description
31 BKG Standard Ntrip Broadcaster
32 endef
33
34 define Build/Prepare
35 mkdir -p $(PKG_BUILD_DIR)
36 unzip $(DL_DIR)/$(PKG_SOURCE) -d $(PKG_BUILD_DIR)
37 mv $(PKG_BUILD_DIR)/$(PKG_NAME)$(PKG_VERSION)/* $(PKG_BUILD_DIR)
38 chmod +x $(PKG_BUILD_DIR)/configure
39 endef
40
41 define Package/ntripcaster/install
42 $(INSTALL_DIR) $(1)/usr/local/ntripcaster/bin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ntripcaster $(1)/usr/local/ntripcaster/bin/
44 $(INSTALL_DIR) $(1)/usr/local/ntripcaster/conf
45 $(INSTALL_DATA) $(PKG_BUILD_DIR)/conf/ntripcaster.conf.dist $(1)/usr/local/ntripcaster/conf/
46 $(INSTALL_DATA) $(PKG_BUILD_DIR)/conf/sourcetable.dat.dist $(1)/usr/local/ntripcaster/conf/
47 endef
48
49 $(eval $(call BuildPackage,ntripcaster))