diff --git a/package/Config.in b/package/Config.in index ca8fc962d4..3e97ae536d 100644 --- a/package/Config.in +++ b/package/Config.in @@ -418,6 +418,7 @@ source "package/libsoup/Config.in" source "package/libtorrent/Config.in" source "package/libupnp/Config.in" source "package/libvncserver/Config.in" +source "package/ortp/Config.in" source "package/zeromq/Config.in" endmenu diff --git a/package/ortp/Config.in b/package/ortp/Config.in new file mode 100644 index 0000000000..39d9c9a3a0 --- /dev/null +++ b/package/ortp/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_ORTP + bool "oRTP" + help + oRTP, a Real-time Transport Protocol (RTP,RFC3550) library + + http://www.linphone.org/eng/documentation/dev/ortp.html diff --git a/package/ortp/ortp.mk b/package/ortp/ortp.mk new file mode 100644 index 0000000000..f47af8a1ad --- /dev/null +++ b/package/ortp/ortp.mk @@ -0,0 +1,5 @@ +ORTP_VERSION = 0.20.0 +ORTP_SITE = http://download.savannah.nongnu.org/releases/linphone/ortp/sources +ORTP_INSTALL_STAGING = YES + +$(eval $(call AUTOTARGETS))