homebrew-core/Formula/gtksourceviewmm3.rb
Jack Nagel d87063d32f Remove remaining explicit xz build-time deps
These dependencies are automatically detected from the URL, so declaring
them is redundant. If these formulae ever get a head or devel spec, then
explicit xz deps would need to be re-scoped appropriately. Thus we
should remove them.
2014-03-14 23:40:32 -05:00

17 lines
494 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 'pkg-config' => :build
depends_on 'gtkmm3'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end