homebrew-core/Formula/gtkmm3.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

21 lines
552 B
Ruby

require 'formula'
class Gtkmm3 < Formula
homepage 'http://www.gtkmm.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.10/gtkmm-3.10.1.tar.xz'
sha256 '6fa5cdaa5cf386ea7c77fafed47e913afadd48fe45e28d8cb01075c3ee412538'
depends_on 'pkg-config' => :build
depends_on 'glibmm'
depends_on 'gtk+3'
depends_on 'libsigc++'
depends_on 'pangomm'
depends_on 'atkmm'
depends_on 'cairomm'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end