Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
iulib 0.4
Browse files Browse the repository at this point in the history
Closes #14896.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
jgrevich authored and jsallis committed Feb 2, 2013
1 parent 910e958 commit 48a3263
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions Library/Formula/iulib.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,56 @@
require 'formula'

class Iulib < Formula
homepage 'http://code.google.com/p/iulib/'
url 'http://iulib.googlecode.com/files/iulib-0.4.tgz'
sha1 '96a006f806a650886fdd59b1239f6e56d1a864c1'

depends_on :autoconf
depends_on :automake
depends_on :libtool
depends_on :libpng
depends_on "libjpeg"
depends_on "libtiff"

def patches
# fixes errors in header calls
DATA
end

def install
system "aclocal"
system "./build", "--prefix=#{prefix}"
system "make"
system "make install"
end
end

__END__
diff --git a/imglib/iulib.h b/imglib/iulib.h
index bc0eb34..06762c5 100644
--- a/../iulib-0.41/imglib/iulib.h
+++ b/imglib/iulib.h
@@ -27,10 +27,10 @@
#ifndef iulib_h__
#define iulib_h__
#include "colib/colib.h"
-#include "bithacks.h"
-#include "imgbitptr.h"
-#include "imgbits.h"
-#include "imgrle.h"
+#include "imgbits/bithacks.h"
+#include "imgbits/imgbitptr.h"
+#include "imgbits/imgbits.h"
+#include "imgbits/imgrle.h"
#include "autoinvert.h"
#include "imgio.h"
#include "io_jpeg.h"
@@ -50,6 +50,6 @@
#include "imgrescale.h"
#include "imgthin.h"
#include "imgtrace.h"
-#include "dgraphics.h"
-#include "vidio.h"
+#include "utils/dgraphics.h"
+#include "vidio/vidio.h"
#endif

0 comments on commit 48a3263

Please sign in to comment.