mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
39 lines
1009 B
Ruby
39 lines
1009 B
Ruby
require 'package'
|
|
|
|
class Weston < Package
|
|
description 'Weston is the reference implementation of a Wayland compositor, and a useful compositor in its own right.'
|
|
homepage 'http://wayland.freedesktop.org'
|
|
version '4.0.0'
|
|
source_url 'https://github.com/wayland-project/weston/archive/4.0.0.tar.gz'
|
|
source_sha256 '46b0178cd37b0bf7471c9af12c847c7b8728699ecd5c04ce79be77ea12c98512'
|
|
|
|
depends_on 'harfbuzz'
|
|
depends_on 'libxcursor'
|
|
depends_on 'libinput'
|
|
depends_on 'libxkbcommon'
|
|
depends_on 'libwayland'
|
|
depends_on 'wayland_protocols'
|
|
depends_on 'libjpeg'
|
|
depends_on 'libunwind'
|
|
|
|
depends_on 'pango'
|
|
depends_on 'dbus'
|
|
|
|
depends_on 'libxxf86vm'
|
|
|
|
def self.build
|
|
system "./autogen.sh"
|
|
system "./configure",
|
|
"--prefix=#{CREW_PREFIX}",
|
|
"--libdir=#{CREW_LIB_PREFIX}",
|
|
"--disable-weston-launch",
|
|
"--enable-demo-clients-install"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make DESTDIR=#{CREW_DEST_DIR} install"
|
|
end
|
|
end
|
|
|