888119013a
Camellia is an image processing and computer vision library Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
423 B
Ruby
13 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
|