20 lines
399 B
Ruby
20 lines
399 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
|
||
|
|
||
|
def test
|
||
|
system "#{bin}/clamz"
|
||
|
end
|
||
|
end
|