-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastrochem.rb
More file actions
27 lines (25 loc) · 751 Bytes
/
astrochem.rb
File metadata and controls
27 lines (25 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# astrochem homebrew install script
class Astrochem < Formula
desc "A code to compute the abundances of chemical species in the interstellar medium"
homepage "https://github.com/smaret/astrochem"
url "https://github.com/smaret/astrochem", :using => :git
version "0.9"
depends_on "gcc"
depends_on "hdf5"
depends_on "sundials"
depends_on "automake"
depends_on "libtool"
depends_on "numpy"
depends_on "python"
def install
system "./bootstrap"
system "./configure", "--disable-debug", \
"--disable-dependency-tracking",\
"--disable-silent-rules",\
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "false"
end
end