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

class Camellia < Formula
  homepage 'http://camellia.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/camellia/Unix_Linux%20Distribution/v2.7.0/CamelliaLib-2.7.0.tar.gz'
  md5 '9dcfccb1d88193a963d18403f0e8474f'

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