forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 1
/
apophenia.rb
48 lines (42 loc) · 1.67 KB
/
apophenia.rb
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
class Apophenia < Formula
desc "C library for statistical and scientific computing"
homepage "http://apophenia.info/"
url "https://github.com/b-k/apophenia/archive/v1.0.tar.gz"
sha256 "c753047a9230f9d9e105541f671c4961dc7998f4402972424e591404f33b82ca"
revision 1
head "https://github.com/b-k/apophenia.git"
bottle do
cellar :any
sha256 "d2fdb3ae54f3ced4793087283c971787ce16d0b4e2d58e84089f8dd866c0a1a0" => :sierra
sha256 "077cf0dbc7082d1049be542d862fe5172f9c95f7553ccfac2e044bde8ae961fa" => :el_capitan
sha256 "01dad8fbecbfbecaeb6d37c095c40b7ca1811ad0ba578543aa9220bac15bf79d" => :yosemite
sha256 "d4c8528bcc990d7c866ebfb48530eec37f235e5d481299aa401bd1023fdb1de3" => :mavericks
end
# doi "arXiv:1502.02614"
# isbn "978-0-691-13314-0"
# eISBN "978-1-4008-2874-6"
depends_on "gsl"
depends_on "mysql" => :optional
depends_on "sqlite" unless OS.mac?
def install
system "./configure", "--enable-extended-tests", "--prefix=#{prefix}", ("--with-mysql=no" if build.without? "mysql")
system "make"
system "make", "install"
end
test do
# write a sample csv text file to import
(testpath/"foo.csv").write <<-EOS.undent
thud,bump
1,2
3,4
5,6
7,8
EOS
# test the csv to sqlite importer (built with libapophenia) works
system "#{bin}/apop_text_to_db", (testpath/"foo.csv"), "bar", (testpath/"baz.db")
# verify that we created a table bar in the database baz.db
system "sqlite3", "baz.db", ".dump bar"
# test the graph plotting tool (built with libapophenia) works
system "#{bin}/apop_plot_query", "-d", (testpath/"baz.db"), "-q", "select thud,bump from bar", "-f", "grumble"
end
end