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: Steve Kenton <skenton@ou.edu>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Steve Kenton 2015-02-02 22:35:06 +00:00 committed by Peter Korsgaard
parent fc2e91d5bd
commit 0df309a3e8
4 changed files with 32 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,15 @@
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

View File

@ -0,0 +1,3 @@
# 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

View File

@ -0,0 +1,13 @@
###############################################################################
#
# 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))