e90282fcd7
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
22 lines
641 B
Ruby
22 lines
641 B
Ruby
require 'formula'
|
|
|
|
class Gwyddion < Formula
|
|
homepage 'http://gwyddion.net/'
|
|
url 'http://downloads.sourceforge.net/project/gwyddion/gwyddion/2.34/gwyddion-2.34.tar.xz'
|
|
sha1 'ad52085fd6f2374757e16e5263a7029051ee021b'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz' => :build
|
|
depends_on 'gtk+'
|
|
depends_on 'libxml2'
|
|
depends_on 'fftw'
|
|
depends_on 'gtkglext'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-desktop-file-update",
|
|
"--prefix=#{prefix}",
|
|
"--with-html-dir=#{doc}"
|
|
system "make install"
|
|
end
|
|
end
|