2fc63c20aa
Closes #45434. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
22 lines
618 B
Ruby
22 lines
618 B
Ruby
class Cimg < Formula
|
|
desc "C++ toolkit for image processing"
|
|
homepage "http://cimg.eu/"
|
|
url "http://cimg.eu/files/CImg_2.7.4.zip"
|
|
sha256 "4b2e795bd1e4f6fe638171748fc4a7ac5b165155c4caa64bba0d61f1115358b3"
|
|
|
|
bottle :unneeded
|
|
|
|
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
|