2011-03-10 05:11:03 +00:00
|
|
|
class Aview < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "ASCII-art image browser and animation viewer"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://aa-project.sourceforge.net/aview/"
|
|
|
|
url "https://downloads.sourceforge.net/aa-project/aview-1.3.0rc1.tar.gz"
|
|
|
|
sha256 "42d61c4194e8b9b69a881fdde698c83cb27d7eda59e08b300e73aaa34474ec99"
|
2009-12-29 06:11:11 +00:00
|
|
|
|
2016-04-09 08:58:14 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2016-09-28 15:18:53 +00:00
|
|
|
sha256 "95cbb14a2a5cb4d8d11d9ca3621e81705df77f47d85f89383913e3a02da56041" => :sierra
|
2016-04-09 08:58:14 +00:00
|
|
|
sha256 "cb20b8513b3b7d2977943d7ba14f2627892697e9a6b69c4366563786810ca95c" => :el_capitan
|
|
|
|
sha256 "886a6800deefcf7a1e377db57c9df0579b6f1fcb4b491a6262171411bce3517b" => :yosemite
|
|
|
|
sha256 "142a0b64e457e900e395f35d5112bd968e605fa6182bdc9ca77b923a5e5263f6" => :mavericks
|
|
|
|
end
|
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "aalib"
|
2009-12-29 06:11:11 +00:00
|
|
|
|
2014-03-18 03:44:51 +00:00
|
|
|
patch :DATA
|
2009-12-29 06:11:11 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-07 01:35:12 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2010-07-15 16:37:07 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2009-12-29 06:11:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/image.c b/image.c
|
|
|
|
index 232b838..9780e61 100644
|
|
|
|
--- a/image.c
|
|
|
|
+++ b/image.c
|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
-#include <malloc.h>
|
|
|
|
+#include <stdlib.h>
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
int imgwidth, imgheight;
|
|
|
|
diff --git a/ui.c b/ui.c
|
|
|
|
index d316f7a..134a4ca 100644
|
|
|
|
--- a/ui.c
|
|
|
|
+++ b/ui.c
|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
-#include <malloc.h>
|
|
|
|
+#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <aalib.h>
|
|
|
|
#include "shrink.h"
|
|
|
|
|