homebrew-core/Formula/gabedit.rb
Michael Huynh 77210000c2 gabedit 2.4.0
Gabedit is a Graphical User Interface for Gamess-US, Gaussian, Molcas,
Molpro, MPQC, OpenMopac, Orca, PC Gamess and Q-Chem computational
chemistry packages.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-15 18:21:46 -07:00

17 lines
423 B
Ruby

require 'formula'
class Gabedit < Formula
homepage 'http://gabedit.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/gabedit/gabedit/Gabedit240/GabeditSrc240.tar.gz'
version '2.4.0'
md5 '2b012ceaacafffc92c5d677822df8002'
depends_on 'pkg-config' => :build
depends_on 'gtk+'
depends_on 'gtkglext'
def install
system 'make'
bin.install 'gabedit' # There is no 'make install'
end
end