diff options
| author | rick | 2009-10-18 12:05:19 -0700 |
|---|---|---|
| committer | Max Howell | 2009-10-19 04:02:48 +0100 |
| commit | f7384e372876e4ef9309aab1e17c662d2f6ae931 (patch) | |
| tree | 7e0e3d185b84dc8117d6cb6c0ce9158207bd9b36 /Library/Formula | |
| parent | 9b762f369aaa88d632237527e8da072c53542bb6 (diff) | |
| download | homebrew-f7384e372876e4ef9309aab1e17c662d2f6ae931.tar.bz2 | |
Add DevIL formula
Developer's Image Library (DevIL) is a cross-platform image library utilizing
a simple syntax to load, save, convert, manipulate, filter and display a
variety of images with ease.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/devil.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/devil.rb b/Library/Formula/devil.rb new file mode 100644 index 000000000..1099e501a --- /dev/null +++ b/Library/Formula/devil.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Devil <Formula + url 'http://prdownloads.sourceforge.net/openil/1.7.8/DevIL-1.7.8.tar.gz' + homepage 'http://sourceforge.net/projects/openil/' + md5 '7918f215524589435e5ec2e8736d5e1d' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
