[packages] add ortp - a Real-time Transport Protocol (RTP) library
[openwrt/svn-archive/archive.git] / libs / ortp / Makefile
1 #
2 # Copyright (C) 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:=ortp
11 PKG_VERSION:=0.16.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= \
16 http://download.savannah.gnu.org/releases-noredirect/linphone/ortp/sources/ \
17 http://www.very-clever.com/download/nongnu/linphone/ortp/sources/
18 PKG_MD5SUM:=2b0281600cb958d1c94e318a86b62fe3
19
20 PKG_FIXUP:=libtool
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libortp
26 SECTION:=libs
27 CATEGORY:=Libraries
28 TITLE:=Real-time Transport Protocol (RTP) library
29 URL:=http://www.linphone.org/index.php/eng/code_review/ortp
30 DEPENDS:= +libpthread
31 endef
32
33 CONFIGURE_ARGS += \
34 --disable-debug \
35 --enable-ipv6 \
36 --enable-perf \
37 --disable-ssl-hmac \
38 --disable-so-reuseaddr \
39 --without-srtp \
40
41 CONFIGURE_VARS += \
42 ac_cv_header_srtp_srtp_h=no \
43 ac_cv_lib_srtp_srtp_init=no \
44
45 define Build/InstallDev
46 $(INSTALL_DIR) $(1)/usr/include
47 ( cd $(PKG_INSTALL_DIR); $(CP) \
48 ./usr/include/ortp \
49 $(1)/usr/include/ \
50 )
51 $(INSTALL_DIR) $(1)/usr/lib
52 ( cd $(PKG_INSTALL_DIR); $(CP) \
53 ./usr/lib/libortp.{a,so*} \
54 $(1)/usr/lib/ \
55 )
56 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
57 ( cd $(PKG_INSTALL_DIR); $(CP) \
58 ./usr/lib/pkgconfig/ortp.pc \
59 $(1)/usr/lib/pkgconfig/ \
60 )
61 endef
62
63 define Package/libortp/install
64 $(INSTALL_DIR) $(1)/usr/lib
65 ( cd $(PKG_INSTALL_DIR); $(CP) \
66 ./usr/lib/libortp.so.* \
67 $(1)/usr/lib/ \
68 )
69 endef
70
71 $(eval $(call BuildPackage,libortp))