homebrew-core/Formula/gtksourceviewmm3.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
522 B
Ruby

require 'formula'
class Gtksourceviewmm3 < Formula
homepage 'https://developer.gnome.org/gtksourceviewmm/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtksourceviewmm/3.2/gtksourceviewmm-3.2.0.tar.xz'
sha1 'cac8d2fdde7b862bdb5eb12c6b8998a29e3fcf95'
depends_on 'gtksourceview3'
depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'gtkmm3'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end