Commit 52acc2b6 authored by Ed Reel's avatar Ed Reel Committed by GitHub

Merge pull request #1733 from lovedheart/patch-11

Create graphene.rb
parents 89c4a093 089269b9
require 'package'
class Graphene < Package
description 'A thin layer of graphic data types'
homepage 'https://github.com/ebassi/graphene'
version '1.6.0'
source_url 'https://github.com/ebassi/graphene/archive/1.6.0.tar.gz'
source_sha256 '98970f859e452ce421b72726ca727fdf3ac27cb4804b62bfe520157fa46aa2fd'
depends_on 'meson'
depends_on 'gobject_introspection'
def self.build
system "meson _build --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX} -Denable-arm-neon=false"
end
def self.install
Dir.chdir("_build") do
system "ninja install"
end
end
def self.check
Dir.chdir("_build") do
system "ninja test"
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment