blob: c5d29b509bf7a39f9101d8f8d213358c011355c2 (
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.6.zip'
sha1 '073391c2bf3ade2c1c3c663a790e774f344dea3d'
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
|