aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccrypt.rb
blob: 1bf08eeb4c29565479c81e87f2276cad8c90f208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Ccrypt < Formula
  url 'http://ccrypt.sourceforge.net/download/ccrypt-1.9.tar.gz'
  homepage 'http://ccrypt.sourceforge.net/'
  md5 'c3f78019d7a166dd66f1d4b1390c62c2'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
    system "make install"
    system "make check"
  end
end