Skip to content

Commit

Permalink
goocanvas 1.0.0
Browse files Browse the repository at this point in the history
GooCanvas is a canvas widget for GTK+ that uses the cairo 2D library for
drawing.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
adestefan authored and adamv committed Aug 6, 2013
1 parent 11dfa2d commit ca086fc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Formula/goocanvas.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
require 'formula'

class Goocanvas < Formula
homepage 'https://live.gnome.org/GooCanvas'
url 'http://ftp.gnome.org/pub/GNOME/sources/goocanvas/1.0/goocanvas-1.0.0.tar.bz2'
sha1 'b41d38726fa537258a5f00908eff2d6aad9a5e50'

depends_on :x11
depends_on 'pkg-config' => :build
depends_on 'cairo'
depends_on 'glib'
depends_on 'gtk+'

def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
end

0 comments on commit ca086fc

Please sign in to comment.