blob: 16a2ec8c6312de95e96e105cec4c1181fa2875ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#
# Copyright (C) 2011 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:=live
PKG_VERSION:=2012.02.04
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.live555.com/liveMedia/public/
PKG_MD5SUM:=5c9753e027af08c065f156e2a0bec023
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/openrtsp
SECTION:=video
CATEGORY:=Video Streaming
TITLE:=live555 streaming libraries and testProgs
URL:=http://www.live555.com/
DEPENDS:=+libstdcpp
endef
define Build/Configure
( cd $(PKG_BUILD_DIR); \
$(SED) 's/@CROSS_COMPILE@/$(TARGET_CROSS)/g' \
-e 's/@CFLAGS@/$(TARGET_CFLAGS)/g' \
config.OpenWrt; \
./genMakefiles OpenWrt; \
)
endef
define Package/openrtsp/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/testProgs/openRTSP $(1)/usr/bin/
endef
$(eval $(call BuildPackage,openrtsp))
|