mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt vapoursynth to updater-vapoursynth-R72 * Adjust graphicsmagick build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update zimg, add graphicsmagick builds, add vapoursynth builds, update libtoolize function. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-vim-9.1.1634 — gvim → 9.1.1634,vim → 9.1.1634,vim_runtime → 9.1.1634,xxd_standalone → 9.1.1634 (#12471) * Add unbuilt vim to updater-vim-9.1.1634 * updater-vim-9.1.1634: Build Run on linux/arm/v7. * updater-vim-9.1.1634: Build Run on linux/amd64. * updater-vim-9.1.1634: Build Run on linux/386. * updater-vim-9.1.1634: Package File Update Run on linux/386 container. * Add ignore_updater to package.rb, and let version.rb use that to ignore packages during updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild vim packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust PR title arrows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
759 B
Ruby
23 lines
759 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Zimg < Autotools
|
|
description 'Scaling, colorspace conversion, and dithering library'
|
|
homepage 'https://github.com/sekrit-twc/zimg'
|
|
version '3.0.6'
|
|
license 'WTFPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/sekrit-twc/zimg.git'
|
|
git_hashtag "release-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '661533557540a229d13509748d50659e94cfd18b372826f99a10a0c939045938',
|
|
armv7l: '661533557540a229d13509748d50659e94cfd18b372826f99a10a0c939045938',
|
|
i686: '540c06559d4af3a1eedbc10d4e660d6a1b123a1062ab3c57f58da79a0b96fb5f',
|
|
x86_64: 'b84d0eee8ecb1b8a3e7c502a7fae47a663dbabbf4709a4515013303d9984be7b'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
end
|