mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
require 'package'
|
|
|
|
class Graphene < Package
|
|
description 'A thin layer of graphic data types'
|
|
homepage 'https://github.com/ebassi/graphene'
|
|
version '1.10.8'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/ebassi/graphene.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9ae35576dbac03a5150ef70c8a0a22321ed506f960fc4dd0153e90fc6b1cd8e0',
|
|
armv7l: '9ae35576dbac03a5150ef70c8a0a22321ed506f960fc4dd0153e90fc6b1cd8e0',
|
|
i686: '7afe1ad210a306e68fc4fa6e2c49caac0fe583f7671fb4116eb80492c1c9263a',
|
|
x86_64: 'ca6f6733df788af3d4cec704a67b2d07ecb91ed188e3edf5067b1e85e24e7264'
|
|
})
|
|
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
def self.build
|
|
system "meson setup #{CREW_MESON_OPTIONS.gsub('-mfpu=vfpv3-d16', '-mfpu=neon-fp16')} \
|
|
-Darm_neon=true \
|
|
-Dinstalled_tests=false \
|
|
-Dtests=false \
|
|
builddir"
|
|
system 'meson configure --no-pager builddir'
|
|
system "#{CREW_NINJA} -C builddir"
|
|
end
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
|
end
|
|
end
|