aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnumeric.rb
diff options
context:
space:
mode:
authorTrevor Wennblom2011-06-26 06:45:51 -0500
committerAdam Vandenberg2012-02-18 15:41:52 -0800
commita24d0738e6b703f36ea9896a79b826d7f0e54ed3 (patch)
tree5a1f7446a39c0b5005a37105897c1abb45206c3f /Library/Formula/gnumeric.rb
parent3b656f5d1c72f07410ab6fdb6b4ee3425673bf1c (diff)
downloadhomebrew-a24d0738e6b703f36ea9896a79b826d7f0e54ed3.tar.bz2
gnumeric 1.10.17
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/gnumeric.rb')
-rw-r--r--Library/Formula/gnumeric.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/gnumeric.rb b/Library/Formula/gnumeric.rb
new file mode 100644
index 000000000..10cc1f4a8
--- /dev/null
+++ b/Library/Formula/gnumeric.rb
@@ -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