aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-05-19 12:22:01 -0700
committerAdam Vandenberg2012-05-19 21:37:31 -0700
commitf8825cec7d8e067fd333ed5713acd6854ae07945 (patch)
tree82947c8c48af0f3e1b83d3479632350a2d82f0d7 /Library/Formula
parentc4613b046a7a219bb83269118491895563863f81 (diff)
downloadhomebrew-f8825cec7d8e067fd333ed5713acd6854ae07945.tar.bz2
gwyddion 2.28
Upgrade gwyddion to version 2.28. Remove the unrecognized `--disable-debug`. Add `--with-html-dir=#{doc}` to get the docs in the right place. Add the xz build time dep to handle the tarball. Tested on Lion with clang and llvm from XCode-4.3.2. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gwyddion.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/gwyddion.rb b/Library/Formula/gwyddion.rb
index bd592695c..70def866a 100644
--- a/Library/Formula/gwyddion.rb
+++ b/Library/Formula/gwyddion.rb
@@ -1,19 +1,21 @@
require 'formula'
class Gwyddion < Formula
- url 'http://downloads.sourceforge.net/project/gwyddion/gwyddion/2.23/gwyddion-2.23.tar.bz2'
homepage 'http://gwyddion.net/'
- md5 '24913aa2e44ed0791287e2b09fbe354f'
+ url 'http://downloads.sourceforge.net/project/gwyddion/gwyddion/2.28/gwyddion-2.28.tar.xz'
+ sha1 '9f93b236f39694a9d0c4e162a20ace963783ccea'
+ depends_on 'xz' => :build
depends_on 'gtk+'
depends_on 'libxml2'
depends_on 'fftw'
depends_on 'gtkglext'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-dependency-tracking",
"--disable-desktop-file-update",
- "--prefix=#{prefix}"
+ "--prefix=#{prefix}",
+ "--with-html-dir=#{doc}"
system "make install"
end
end