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

15 lines
428 B
Ruby

require 'formula'
class Libgee < Formula
homepage 'http://live.gnome.org/Libgee'
url 'http://ftp.gnome.org/pub/GNOME/sources/libgee/0.12/libgee-0.12.0.tar.xz'
sha256 'd106ed63fe0da5d5ee89aa8197a373cf9a2b96688cc3060144bfc0a022496ea5'
depends_on 'pkg-config' => :build
depends_on 'vala'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end