blob: d1496dbc3a53625b11a156cb0c75df1574e00701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
require 'formula'
class Snzip < Formula
  homepage 'https://github.com/kubo/snzip'
  url 'https://github.com/kubo/snzip/archive/1.0.1.tar.gz'
  sha1 '3aac364c0a508cdb06d771cede6c5758aeb89666'
  depends_on 'automake' => :build
  depends_on 'autoconf' => :build
  depends_on 'snappy'
  def install
    system "./autogen.sh"
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
  test do
    (testpath/'test.out').write "test"
    system "#{bin}/snzip", "test.out"
    system "#{bin}/snzip", "-d", "test.out.sz"
  end
end
  |