e3b614e983
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.
12 lines
359 B
Ruby
12 lines
359 B
Ruby
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
|