blob: d2225df343f71d2d9c58f51b29e86a78eb61e642 (
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 'https://downloads.sourceforge.net/cimg/CImg-1.5.7.zip'
sha1 '399e332b982b4ca0bcb27ea4f6763fd84a3b8457'
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
|