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

12 lines
368 B
Ruby

require 'formula'
class GnomeCommon < Formula
homepage 'http://git.gnome.org/browse/gnome-common/'
url 'http://ftp.gnome.org/pub/gnome/sources/gnome-common/3.10/gnome-common-3.10.0.tar.xz'
sha256 'aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end