blob: dc2580cf4c07ea160fdbe3c3077eaf1bcb16c057 (
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.6.1.zip"
sha1 "b5bac348c4eeaef6b68d17e2314f42642994005a"
def install
include.install "CImg.h"
doc.install %w(
README.txt
Licence_CeCILL-C_V1-en.txt Licence_CeCILL_V2-en.txt
examples)
end
end
|