Camellia 2.7.0

Camellia is an image processing and computer vision library

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Luke Ledet 2011-07-14 17:16:19 -05:00 committed by Adam Vandenberg
parent 6f8268a682
commit 888119013a

13
Formula/camellia.rb Normal file
View file

@ -0,0 +1,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