blob: 1898ba3cf4551465018cd8b60887e957af067c0f (
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.0.zip'
  sha1 '6b603822a187c94c120d3b561048e1ef12f9b56f'
  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
  |