homebrew-core/Formula/gtksourceviewmm.rb
Paul 0d7aa98d91 Add C++ bindings for gtksourceview for gtk 2 and gtk 3
Closes Homebrew/homebrew#23226.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-16 16:32:39 -08:00

18 lines
521 B
Ruby

require 'formula'
class Gtksourceviewmm < Formula
homepage 'https://developer.gnome.org/gtksourceviewmm/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtksourceviewmm/2.10/gtksourceviewmm-2.10.3.tar.xz'
sha1 '17d5daf33d2b6bc21c48c5c730abaae70e027566'
depends_on 'gtksourceview'
depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'gtkmm'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end