homebrew-core/Formula/devil.rb

49 lines
1.3 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Devil < Formula
homepage 'http://sourceforge.net/projects/openil/'
url 'https://downloads.sourceforge.net/project/openil/DevIL/1.7.8/DevIL-1.7.8.tar.gz'
sha1 'bc27e3e830ba666a3af03548789700d10561fcb1'
2014-03-23 02:51:41 +00:00
revision 1
2010-10-07 03:14:58 +00:00
2014-03-23 02:51:41 +00:00
depends_on 'libpng'
depends_on 'jpeg'
option :universal
# see http://sourceforge.net/tracker/?func=detail&aid=3404133&group_id=4470&atid=104470
# also, even with -std=gnu99 removed from the configure script,
# devil fails to build with clang++ while compiling il_exr.cpp
fails_with :clang do
cause "invalid -std=gnu99 flag while building C++"
end
2010-10-07 03:14:58 +00:00
# fix compilation issue for iluc.c
2014-03-18 17:13:31 +00:00
patch :DATA
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-ILU",
"--enable-ILUT"
system "make install"
end
end
2010-10-07 03:14:58 +00:00
__END__
--- a/src-ILU/ilur/ilur.c 2009-03-08 08:10:12.000000000 +0100
+++ b/src-ILU/ilur/ilur.c 2010-09-26 20:01:45.000000000 +0200
@@ -1,6 +1,7 @@
#include <string.h>
#include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
+#include "sys/malloc.h"
#include <IL/il.h>
#include <IL/ilu.h>