New formula for spice-gtk
This commit is contained in:
parent
0e7d9a3e3d
commit
a2880e6be1
32
spice-gtk.rb
Normal file
32
spice-gtk.rb
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
class SpiceGtk < Formula
|
||||||
|
homepage "http://www.spice-space.org/home.html"
|
||||||
|
url "http://www.spice-space.org/download/gtk/spice-gtk-0.26.tar.bz2"
|
||||||
|
sha1 "c84ffe620cc5b7c9f91ffaef4e4371636b472fa1"
|
||||||
|
|
||||||
|
depends_on "gobject-introspection" => :build
|
||||||
|
depends_on "intltool" => :build
|
||||||
|
depends_on "pkg-config" => :build
|
||||||
|
depends_on "vala" => :build
|
||||||
|
|
||||||
|
depends_on "cairo"
|
||||||
|
depends_on "gdk-pixbuf"
|
||||||
|
depends_on "gettext"
|
||||||
|
depends_on "glib"
|
||||||
|
depends_on "gtk+3"
|
||||||
|
depends_on "jpeg"
|
||||||
|
depends_on "pango"
|
||||||
|
depends_on "pixman"
|
||||||
|
# TODO: audio
|
||||||
|
|
||||||
|
def install
|
||||||
|
system "./configure", "--disable-dependency-tracking",
|
||||||
|
"--disable-silent-rules",
|
||||||
|
"--with-gtk=3.0",
|
||||||
|
"--enable-introspection",
|
||||||
|
"--enable-vala",
|
||||||
|
"--with-audio=no",
|
||||||
|
"--with-coroutine=gthread",
|
||||||
|
"--prefix=#{prefix}"
|
||||||
|
system "make", "install"
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue