mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add mlt package * Add built packages for linux/386 to mlt * Add built packages for linux/amd64 to mlt * Add built packages for linux/arm/v7 to mlt --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com>
25 lines
807 B
Ruby
25 lines
807 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Mlt < CMake
|
|
description 'MLT is a LGPL multimedia framework designed for video editing.'
|
|
homepage 'https://github.com/mltframework/mlt'
|
|
version '7.30.0'
|
|
license 'LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/mltframework/mlt.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9fa1ebb7a65738de10c1ea16fb80452acb949b35bc75480944fa3a737371a71b',
|
|
armv7l: '9fa1ebb7a65738de10c1ea16fb80452acb949b35bc75480944fa3a737371a71b',
|
|
i686: '2586e37abb032ed127fd111bc44aa56e93643876bf6b11480176ae6c4a5cb916',
|
|
x86_64: '2844eaa792b4b75061c39b80a332dd592e086d7dbac13fda67bdbe2b5fe99012'
|
|
})
|
|
|
|
depends_on 'alsa_lib'
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libxml2' # R
|
|
end
|