aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/devil.rb12
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