14 lines
423 B
Ruby
14 lines
423 B
Ruby
|
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
|