Commit 086b38d9 authored by Pieterjan Camerlynck's avatar Pieterjan Camerlynck Committed by Thomas Petazzoni
Browse files

libdvbpsi: new package



libdvbpsi is a library used by vlc for decoding MPEG TS

[Thomas:
 - add missing Config.in comment about the thread dependency.]

Signed-off-by: default avatarPieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent cb61b735
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1017,6 +1017,7 @@ menu "Multimedia"
	source "package/libbluray/Config.in"
	source "package/libdcadec/Config.in"
	source "package/libdvbcsa/Config.in"
	source "package/libdvbpsi/Config.in"
	source "package/libdvbsi/Config.in"
	source "package/libdvdnav/Config.in"
	source "package/libdvdread/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBDVBPSI
	bool "libdvbpsi"
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  libdvbpsi is a simple library designed for decoding and
	  generation of MPEG TS and DVB PSI tables according to standards
	  ISO/IEC 13818 and ITU-T H.222.0.

	  http://www.videolan.org/developers/libdvbpsi.html

comment "libdvbpsi needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+4 −0
Original line number Diff line number Diff line
# From http://download.videolan.org/pub/libdvbpsi/1.3.0/libdvbpsi-1.3.0.tar.bz2.md5
md5	2b217039a1299000c39423441f77e76a	libdvbpsi-1.3.0.tar.bz2
# From http://download.videolan.org/pub/libdvbpsi/1.3.0/libdvbpsi-1.3.0.tar.bz2.sha256
sha256	a2fed1d11980662f919bbd1f29e2462719e0f6227e1a531310bd5a706db0a1fe	libdvbpsi-1.3.0.tar.bz2
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# libdvbpsi
#
################################################################################

LIBDVBPSI_VERSION = 1.3.0
LIBDVBPSI_SITE = http://download.videolan.org/pub/libdvbpsi/$(LIBDVBPSI_VERSION)
LIBDVBPSI_SOURCE = libdvbpsi-$(LIBDVBPSI_VERSION).tar.bz2
LIBDVBPSI_LICENSE = LGPLv2.1+
LIBDVBPSI_LICENSE_FILES = COPYING
LIBDVBPSI_INSTALL_STAGING = YES

$(eval $(autotools-package))