blob: a284a574079ac7b32713e18996f98f13b9224356 (
plain)
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
|
class Recutils < Formula
homepage "http://www.gnu.org/software/recutils/"
url "http://ftpmirror.gnu.org/recutils/recutils-1.7.tar.gz"
mirror "http://ftp.gnu.org/gnu/recutils/recutils-1.7.tar.gz"
sha1 "20d265aecb05ca4e4072df9cfac08b1392da6919"
bottle do
cellar :any
sha1 "e8d589aeea32e80a0f8eff4e51e1a2003ee98595" => :yosemite
sha1 "7aeab12cf02e49d18cbd345125b9dd8945120b64" => :mavericks
sha1 "4569539ec11801311371fbc9a60f25e20815d4a9" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.csv").write <<-EOS.undent
a,b,c
1,2,3
EOS
system "#{bin}/csv2rec", "test.csv"
end
end
|