aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cimg.rb
blob: f4defeb52c596258cc86e674cd6484e13e1e548f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Cimg < Formula
  homepage 'http://cimg.sourceforge.net/'
  url 'http://downloads.sourceforge.net/cimg/CImg-1.5.2.zip'
  sha1 'd1323ce2e758f96c505dd68e5f58a9f6bd51a93c'

  def install
    include.install 'CImg.h'

    doc.install %w(
      README.txt
      Licence_CeCILL-C_V1-en.txt Licence_CeCILL_V2-en.txt
      html examples)
  end
end