34 lines
922 B
Ruby
34 lines
922 B
Ruby
class Cimg < Formula
|
|
desc "C++ toolkit for image processing"
|
|
homepage "https://cimg.eu/"
|
|
url "https://cimg.eu/files/CImg_3.1.6.zip"
|
|
sha256 "61e331b144b6aac91513c708abdad26f660fa64f15d9828336cd62041eecbf57"
|
|
license "CECILL-2.0"
|
|
|
|
livecheck do
|
|
url "https://cimg.eu/files/"
|
|
regex(/href=.*?CImg[._-]v?(\d+(?:\.\d+)+)\.zip/i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, all: "48c62f62b212950f3e1d57e3acfdf342334b90fabb4978da800a5d7988c06b1f"
|
|
end
|
|
|
|
fails_with gcc: "5" # C++ 17 is required
|
|
|
|
def install
|
|
include.install "CImg.h"
|
|
prefix.install "Licence_CeCILL-C_V1-en.txt", "Licence_CeCILL_V2-en.txt"
|
|
pkgshare.install "examples", "plugins"
|
|
end
|
|
|
|
test do
|
|
cp_r pkgshare/"examples", testpath
|
|
cp_r pkgshare/"plugins", testpath
|
|
cp include/"CImg.h", testpath
|
|
system "make", "-C", "examples", "image2ascii"
|
|
system "examples/image2ascii"
|
|
end
|
|
end
|