aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ccrypt.rb
blob: 40e7172038cfefa2a8861b6d88b644cf2a76d359 (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