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:
parent
fc2e91d5bd
commit
0df309a3e8
@ -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
package/mjpegtools/Config.in
Normal file
15
package/mjpegtools/Config.in
Normal 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
|
3
package/mjpegtools/mjpegtools.hash
Normal file
3
package/mjpegtools/mjpegtools.hash
Normal 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
|
13
package/mjpegtools/mjpegtools.mk
Normal file
13
package/mjpegtools/mjpegtools.mk
Normal 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))
|
Loading…
Reference in New Issue
Block a user