mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Adjust const.rb and packages to use generated version constants. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gem binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update update scripts. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Libxml2 => 2.13.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust install.sh to handle new gem package versioning suffix. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update openimageio Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_ruff Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add pip binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move activesupport gem behind requre_gem function. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust file path in ruby_pry. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
24 lines
754 B
Ruby
24 lines
754 B
Ruby
require 'buildsystems/perl'
|
|
|
|
class Perl_cairo < PERL
|
|
description 'Perl interface to the cairo 2d vector graphics library'
|
|
homepage 'https://metacpan.org/pod/Cairo'
|
|
version "1.109-#{CREW_PERL_VER}"
|
|
license 'GPL 2.1'
|
|
compatibility 'x86_64'
|
|
source_url 'https://cpan.metacpan.org/authors/id/X/XA/XAOC/Cairo-1.109.tar.gz'
|
|
source_sha256 '8219736e401c2311da5f515775de43fd87e6384b504da36a192f2b217643077f'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: 'f9dc161896ea653d4e484294ca398fb5d664ad7ff8aead117d11c166e8bcc65d'
|
|
})
|
|
|
|
depends_on 'cairo' # R
|
|
depends_on 'freetype' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'perl_extutils_depends' => :build
|
|
depends_on 'perl_extutils_pkgconfig' => :build
|
|
end
|