2011-07-14 22:16:19 +00:00
|
|
|
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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'f7f5004733787731e0c2252d0b5fe2e61622cc9e'
|
2011-07-14 22:16:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|