Commit 0df309a3 authored by Steve Kenton's avatar Steve Kenton Committed by Peter Korsgaard
Browse files

mjpegtools: new package



The mjpegtools programs are a set of tools that can do recording of videos
and playback, simple cut-and-paste editing and the MPEG compression of audio
and video under Linux.

[Peter: license is GPLv2+]
Signed-off-by: default avatarSteve Kenton <skenton@ou.edu>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent fc2e91d5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ menu "Audio and video applications"
	source "package/lame/Config.in"
	source "package/libvpx/Config.in"
	source "package/madplay/Config.in"
	source "package/mjpegtools/Config.in"
	source "package/modplugtools/Config.in"
	source "package/mpd/Config.in"
	source "package/mpd-mpc/Config.in"
+15 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MJPEGTOOLS
	bool "mjpegtools"
	select BR2_PACKAGE_JPEG
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  The mjpegtools programs are a set of tools
	  that can do recording of videos and playback,
	  simple cut-and-paste editing and the MPEG
	  compression of audio and video under Linux.

	  http://mjpeg.sourceforge.net

comment "mjpegtools needs a toolchain w/ C++, threads"
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+3 −0
Original line number Diff line number Diff line
# From http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/
md5	57bf5dd78976ca9bac972a6511b236f3	mjpegtools-2.1.0.tar.gz
sha1	b9effa86280e23d67369e842e5cb645948583097	mjpegtools-2.1.0.tar.gz
+13 −0
Original line number Diff line number Diff line
###############################################################################
#
# mjpegtools
#
###############################################################################

MJPEGTOOLS_VERSION = 2.1.0
MJPEGTOOLS_SITE = http://sourceforge.net/projects/mjpeg/files/mjpegtools/$(MJPEGTOOLS_VERSION)
MJPEGTOOLS_DEPENDENCIES = jpeg
MJPEGTOOLS_LICENSE = GPLv2+
MJPEGTOOLS_LICENSE_FILES = COPYING

$(eval $(autotools-package))