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.
master
rick 2009-10-18 12:05:19 -07:00 committed by Max Howell
parent b1481acc57
commit e3b614e983
1 changed files with 12 additions and 0 deletions

12
Formula/devil.rb Normal file
View File

@ -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