2011-07-14 22:16:19 +00:00
|
|
|
class Camellia < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Image Processing & Computer Vision library written in C"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://camellia.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/camellia/Unix_Linux%20Distribution/v2.7.0/CamelliaLib-2.7.0.tar.gz"
|
|
|
|
sha256 "a3192c350f7124d25f31c43aa17e23d9fa6c886f80459cba15b6257646b2f3d2"
|
2011-07-14 22:16:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2011-07-14 22:16:19 +00:00
|
|
|
end
|
|
|
|
end
|