d87063d32f
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.
18 lines
519 B
Ruby
18 lines
519 B
Ruby
require 'formula'
|
|
|
|
class Libgsf < Formula
|
|
homepage 'http://projects.gnome.org/gnumeric/'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/libgsf/1.14/libgsf-1.14.23.tar.xz'
|
|
sha256 'bfc1c6178f5319d5e6d854c380ce26542f9a103a5ff31c9d25a834e0be52fb17'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'intltool' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'glib'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|