mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
13 lines
248 B
Ruby
13 lines
248 B
Ruby
require 'package'
|
|
|
|
class Pycairo < Package
|
|
description 'Dummy package for py3_pycairo.'
|
|
homepage 'https://cairographics.org/pycairo/'
|
|
version '1'
|
|
license 'LGPL-2.1 or MPL-1.1'
|
|
compatibility 'all'
|
|
is_fake
|
|
|
|
depends_on 'py3_pycairo'
|
|
end
|