Skip to content

Commit

Permalink
Added formula for Gwyddion
Browse files Browse the repository at this point in the history
Gwyddion is a modular program for SPM (scanning probe microscopy) data
visualization and analysis.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
tuxu authored and adamv committed Jan 22, 2011
1 parent a18b224 commit cd0e50f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Library/Formula/gwyddion.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require 'formula'

class Gwyddion <Formula
url 'http://downloads.sourceforge.net/project/gwyddion/gwyddion/2.21/gwyddion-2.21.tar.bz2'
homepage 'http://gwyddion.net/'
md5 '7330a22460743c9da8dceec03f7924e9'

depends_on 'gtk+'
depends_on 'libxml2'
depends_on 'fftw'
depends_on 'gtkglext'

def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--disable-desktop-file-update",
"--prefix=#{prefix}"
system "make install"
end
end

0 comments on commit cd0e50f

Please sign in to comment.