gnumeric 1.10.17

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Trevor Wennblom 2011-06-26 06:45:51 -05:00 committed by Adam Vandenberg
parent 7abf2b85c0
commit ba5d13b643
1 changed files with 19 additions and 0 deletions

19
Formula/gnumeric.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Gnumeric < Formula
homepage 'http://projects.gnome.org/gnumeric/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gnumeric/1.10/gnumeric-1.10.17.tar.bz2'
sha256 'bb2a13424811d132fe1be7a6e82d61157a18c630fc91b7409503dbd7ef600ea5'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'intltool'
depends_on 'goffice'
depends_on 'rarian'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end