homebrew-core/Formula/camellia.rb

13 lines
508 B
Ruby
Raw Normal View History

class Camellia < Formula
desc "Image Processing & Computer Vision library written in C"
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"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end