77210000c2
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>
17 lines
423 B
Ruby
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
|