unfs3 is not parallel build safe
[openwrt/svn-archive/archive.git] / net / udpxy / Makefile
1 #
2 # Copyright (C) 2006 - 2010 OpenWrt.org
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:=udpxy
11 PKG_REV=1.0
12 PKG_TAG=Chipmunk-16
13 PKG_VERSION=$(PKG_REV)-$(PKG_TAG)
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME).$(PKG_REV)-$(PKG_TAG).tgz
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV)
18 PKG_SOURCE_URL:=@SF/udpxy
19 PKG_MD5SUM:=0bba6fd3e0b0065424b198abdf0acb7d
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/udpxy
24 SECTION:=net
25 CATEGORY:=Network
26 DEPENDS:=
27 TITLE:=convert UDP IPTV streams into http stream
28 URL:=http://sourceforge.net/projects/udpxy
29 endef
30
31 define Package/udpxy/description
32 udproxy makes it possible to convert UDP IPTV streams into http
33 streams which can be viewed even over wlans. http streams do
34 not generate huge amounts of multicast traffic, so a sd stream
35 only takes about 300k. interesting for peoply who have IPTV at
36 home and do not want to rent multiple decoders from their
37 provider but just use their own streaming client for example
38 popcornhour/mediatomb/vlc/etc.
39 endef
40
41 define Package/udpxy/install
42 $(INSTALL_DIR) $(1)/usr/bin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/udpxy $(1)/usr/bin/
44 ln -sf udpxy $(1)/usr/bin/udpxrec
45 endef
46
47 $(eval $(call BuildPackage,udpxy))