ac5980e451
SVN-Revision: 30595
45 lines
1015 B
Makefile
45 lines
1015 B
Makefile
#
|
|
# 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))
|