mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Libheif < Package
|
|
description 'libheif is a ISO/IEC 23008-12:2017 HEIF file format decoder and encoder.'
|
|
homepage 'https://github.com/strukturag/libheif'
|
|
version '1.17.6'
|
|
license 'GPL-3'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://github.com/strukturag/libheif.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9c116b6ac1b5da63aa2917a80a7b76c30b6409a32c77644271bc1b038dfa1842',
|
|
armv7l: '9c116b6ac1b5da63aa2917a80a7b76c30b6409a32c77644271bc1b038dfa1842',
|
|
x86_64: '6993cb1d221656dfce127fb0de2d1dceb27815f46f20a33abdc4b72e03f6bc56'
|
|
})
|
|
|
|
depends_on 'dav1d' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdk_pixbuf' # R
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'graphviz' => :build # Only needed for dot.
|
|
depends_on 'libaom' # R
|
|
depends_on 'libde265' # R
|
|
depends_on 'libjpeg_turbo' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'libtiff' # L
|
|
depends_on 'libwebp' # R
|
|
depends_on 'libx265' # R
|
|
depends_on 'rav1e' # R
|
|
depends_on 'svt_av1' # R
|
|
depends_on 'zlib' # R
|
|
|
|
gnome
|
|
|
|
def self.build
|
|
system "cmake -B builddir \
|
|
-G Ninja \
|
|
#{CREW_CMAKE_OPTIONS.gsub('-mfpu=vfpv3-d16', '-mfpu=neon-fp16')} \
|
|
-Wno-dev"
|
|
system "#{CREW_NINJA} -C builddir"
|
|
end
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
|
end
|
|
end
|