mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* update libwebp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/arm/v7 to branch webp. * Updated package files for linux/amd64 to branch webp. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Libwebp < CMake
|
|
description 'WebP is a modern image format that provides superior lossless and lossy compression for images on the web.'
|
|
homepage 'https://developers.google.com/speed/webp/'
|
|
version '1.6.0'
|
|
license 'BSD'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/webmproject/libwebp.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '775d997bb21552026de76b6be21817e26c51696422b9dcf45a1876c15370a1da',
|
|
armv7l: '775d997bb21552026de76b6be21817e26c51696422b9dcf45a1876c15370a1da',
|
|
x86_64: 'e1611d893e945566d6a60421244cee57dd99050d276958601574af8a60a8b7e2'
|
|
})
|
|
|
|
depends_on 'freeglut' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'giflib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'jbigkit' # R
|
|
depends_on 'libdeflate' # R
|
|
depends_on 'libglu' # R
|
|
depends_on 'libglvnd' # R
|
|
depends_on 'libice' # R
|
|
depends_on 'libjpeg_turbo' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'libsdl' => :build
|
|
depends_on 'libsm' # R
|
|
depends_on 'libtiff' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxi' # R
|
|
depends_on 'libxmu' # R
|
|
depends_on 'xzutils' # R
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
gnome
|
|
|
|
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
|
end
|