mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* webkit2gtk updates * deps updates * adjust parent package file * add epiphany * add arch restrictions for epiphany * Update epiphany.rb * Remove case ARCH conditional Co-authored-by: Ed Reel <edreel@gmail.com>
16 lines
285 B
Ruby
16 lines
285 B
Ruby
require 'package'
|
|
|
|
class Webkit2gtk < Package
|
|
description 'Web content engine for GTK'
|
|
homepage 'https://webkitgtk.org'
|
|
@_ver = '2.32.0'
|
|
version @_ver
|
|
license 'LGPL-2+ and BSD-2'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'webkit2gtk_4'
|
|
depends_on 'webkit2gtk_5'
|
|
end
|