blob: 1639f8dcb214c8e1dd3a3645bedc549bcd147a5e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | class Cimg < Formula
  homepage "http://cimg.sourceforge.net/"
  url "https://downloads.sourceforge.net/cimg/CImg_1.6.2.zip"
  sha256 "5c3f465b431566e82d9aeb0ca5dd18d925d3733861c735f4edf7f4e715748813"
  def install
    include.install "CImg.h"
    doc.install %w[
      README.txt
      Licence_CeCILL-C_V1-en.txt
      Licence_CeCILL_V2-en.txt
      examples
      plugins]
  end
  test do
    cd doc/"examples" do
      system "make", "mmacosx"
    end
  end
end
 |