homebrew-core/Formula/clamz.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

19 lines
398 B
Ruby

require 'formula'
class Clamz < Formula
homepage 'http://code.google.com/p/clamz/'
url 'http://clamz.googlecode.com/files/clamz-0.5.tar.gz'
sha1 '54664614e5098f9e4e9240086745b94fe638b176'
depends_on 'pkg-config' => :build
depends_on 'libgcrypt'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
test do
system "#{bin}/clamz"
end
end