aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/camellia.rb
blob: dae0375a7427108eaaae014bedb6c1a3f96da0bd (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 'https://downloads.sourceforge.net/project/camellia/Unix_Linux%20Distribution/v2.7.0/CamelliaLib-2.7.0.tar.gz'
  sha1 'f7f5004733787731e0c2252d0b5fe2e61622cc9e'

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