Commit 43d6e6ca authored by Julian Scheel's avatar Julian Scheel Committed by Thomas Petazzoni
Browse files

dvblast: new package



DVBlast is a simple and powerful MPEG-2/TS demux and streaming
application.

[Thomas:
 - add missing hash file.
 - rewrap Config.in help text
 - remove unneeded "DVBLAST_INSTALL_TARGET = YES", since this is the
   default behavior
 - pass TARGET_MAKE_ENV in the environment when calling make.
 - use TARGET_CONFIGURE_OPTS instead of just CC/LD.]

Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 29e87531
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ menu "Audio and video applications"
	source "package/alsa-utils/Config.in"
	source "package/aumix/Config.in"
	source "package/bellagio/Config.in"
	source "package/dvblast/Config.in"
	source "package/dvdauthor/Config.in"
	source "package/dvdrw-tools/Config.in"
	source "package/espeak/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DVBLAST
	bool "dvblast"
	select BR2_PACKAGE_BITSTREAM
	select BR2_PACKAGE_LIBEV
	depends on !BR2_bfin  # libev
	help
	  DVBlast is a simple and powerful MPEG-2/TS demux and
	  streaming application.

	  http://www.videolan.org/projects/dvblast.html
+4 −0
Original line number Diff line number Diff line
# from https://get.videolan.org/dvblast/3.0/dvblast-3.0.tar.bz2.md5
md5 89ea9ffb16476d47b8853e52a8a3ee63 dvblast-3.0.tar.bz2
# locally calculated
sha256 4fc3eb2a3d3545cb76a5c515a16671d1c34fe2f5dad57b71e89bd54c14c3045e dvblast-3.0.tar.bz2
+22 −0
Original line number Diff line number Diff line
################################################################################
#
# dvblast
#
################################################################################

DVBLAST_VERSION = 3.0
DVBLAST_SOURCE = dvblast-$(DVBLAST_VERSION).tar.bz2
DVBLAST_SITE = https://get.videolan.org/dvblast/$(DVBLAST_VERSION)
DVBLAST_LICENSE = GPLv2+, WTFPL
DVBLAST_LICENSE_FILES = COPYING COPYING.WTFPL
DVBLAST_DEPENDENCIES = bitstream libev

define DVBLAST_BUILD_CMDS
	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef

define DVBLAST_INSTALL_TARGET_CMDS
	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr install
endef

$(eval $(generic-package))