aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cimg.rb
blob: 8d8e8d5ee4864b7beea094781c29628a8341672e (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.4.9.zip'
  md5 'a07cba03f6d66a9970e0b3fcc230bddc'

  def install
    include.install 'CImg.h'

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