mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
updater-vmaf-3.0.0 — vmaf → 3.0.0,zotero → 7.0.23 (#12938)
* Add unbuilt vmaf to updater-vmaf-3.0.0 * updater-vmaf-3.0.0: Build Run on linux/arm/v7. * updater-vmaf-3.0.0: Build Run on linux/386. * updater-vmaf-3.0.0: Build Run on linux/amd64. * updater-vmaf-3.0.0: Package File Update Run on linux/386 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
12a62acd42
commit
ec12e20c8d
@@ -1,6 +1,5 @@
|
||||
# Total size: 3971966
|
||||
# Total size: 2388257
|
||||
/usr/local/bin/vmaf
|
||||
/usr/local/include/libvmaf/compute_vmaf.h
|
||||
/usr/local/include/libvmaf/feature.h
|
||||
/usr/local/include/libvmaf/libvmaf.h
|
||||
/usr/local/include/libvmaf/model.h
|
||||
@@ -8,6 +7,6 @@
|
||||
/usr/local/include/libvmaf/version.h
|
||||
/usr/local/lib/libvmaf.a
|
||||
/usr/local/lib/libvmaf.so
|
||||
/usr/local/lib/libvmaf.so.1
|
||||
/usr/local/lib/libvmaf.so.1.1.1
|
||||
/usr/local/lib/libvmaf.so.3
|
||||
/usr/local/lib/libvmaf.so.3.0.0
|
||||
/usr/local/lib/pkgconfig/libvmaf.pc
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
# Total size: 4349242
|
||||
# Total size: 3267559
|
||||
/usr/local/bin/vmaf
|
||||
/usr/local/include/libvmaf/compute_vmaf.h
|
||||
/usr/local/include/libvmaf/feature.h
|
||||
/usr/local/include/libvmaf/libvmaf.h
|
||||
/usr/local/include/libvmaf/model.h
|
||||
@@ -8,6 +7,6 @@
|
||||
/usr/local/include/libvmaf/version.h
|
||||
/usr/local/lib/libvmaf.a
|
||||
/usr/local/lib/libvmaf.so
|
||||
/usr/local/lib/libvmaf.so.1
|
||||
/usr/local/lib/libvmaf.so.1.1.1
|
||||
/usr/local/lib/libvmaf.so.3
|
||||
/usr/local/lib/libvmaf.so.3.0.0
|
||||
/usr/local/lib/pkgconfig/libvmaf.pc
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
# Total size: 4606698
|
||||
# Total size: 3842661
|
||||
/usr/local/bin/vmaf
|
||||
/usr/local/include/libvmaf/compute_vmaf.h
|
||||
/usr/local/include/libvmaf/feature.h
|
||||
/usr/local/include/libvmaf/libvmaf.h
|
||||
/usr/local/include/libvmaf/model.h
|
||||
@@ -8,6 +7,6 @@
|
||||
/usr/local/include/libvmaf/version.h
|
||||
/usr/local/lib64/libvmaf.a
|
||||
/usr/local/lib64/libvmaf.so
|
||||
/usr/local/lib64/libvmaf.so.1
|
||||
/usr/local/lib64/libvmaf.so.1.1.1
|
||||
/usr/local/lib64/libvmaf.so.3
|
||||
/usr/local/lib64/libvmaf.so.3.0.0
|
||||
/usr/local/lib64/pkgconfig/libvmaf.pc
|
||||
|
||||
@@ -3,20 +3,22 @@ require 'package'
|
||||
class Vmaf < Package
|
||||
description 'Perceptual video quality assessment algorithm based on multi-method fusion'
|
||||
homepage 'https://github.com/Netflix/vmaf/'
|
||||
version '2.1.1'
|
||||
version '3.0.0'
|
||||
license 'BSD-2'
|
||||
compatibility 'all'
|
||||
source_url "https://github.com/Netflix/vmaf/archive/v#{version}.tar.gz"
|
||||
source_sha256 'e7fc00ae1322a7eccfcf6d4f1cdf9c67eec8058709887c8c6c3795c617326f77'
|
||||
binary_compression 'tar.xz'
|
||||
source_sha256 '7178c4833639e6b989ecae73131d02f70735fdb3fc2c7d84bc36c9c3461d93b1'
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: 'fd05f6c2ad4d9f6373d8136db11f858169c17e6c2937a1bcedf381e93408c6e2',
|
||||
armv7l: 'fd05f6c2ad4d9f6373d8136db11f858169c17e6c2937a1bcedf381e93408c6e2',
|
||||
i686: '2163726aef956a8267845bba4b139c693481030531a4d12d120230fdb4e40c12',
|
||||
x86_64: '1453af3bc71ee46c7aef48dc8d402440d08a76518a4761fb185347694a8095d1'
|
||||
aarch64: '27223f17a875ef85c4d64bffe55f2e755b6657a51a64918a080722799fd34261',
|
||||
armv7l: '27223f17a875ef85c4d64bffe55f2e755b6657a51a64918a080722799fd34261',
|
||||
i686: '9f180b6295edecf76ce72fcd331693f833a8bc55d70dd6aec9c87563863b471e',
|
||||
x86_64: '5379016438e0aaa04fc4da41673b583ae7b846adf360f71bbce318a67271984b'
|
||||
})
|
||||
|
||||
depends_on 'gcc_lib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'nasm' => :build
|
||||
|
||||
def self.build
|
||||
|
||||
Reference in New Issue
Block a user