homebrew-core/Formula/xar.rb

38 lines
889 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Xar < Formula
homepage 'http://code.google.com/p/xar/'
2012-03-10 22:51:28 +00:00
url 'http://xar.googlecode.com/files/xar-1.5.2.tar.gz'
md5 '8eabb055d3387b8edc30ecfb08d2e80d'
2012-02-10 03:23:44 +00:00
# Known issue upstream:
# http://code.google.com/p/xar/issues/detail?id=51
def patches
DATA
end
def install
2012-03-10 22:51:28 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
system "make install"
end
end
__END__
diff -Naur old/lib/archive.c new/lib/archive.c
--- old/lib/archive.c
+++ new/lib/archive.c
@@ -79,6 +79,10 @@
#define LONG_MIN INT32_MIN
#endif
+#if LIBXML_VERSION < 20618
+#define xmlDictCleanup() /* function doesn't exist in older API */
+#endif
+
static int32_t xar_unserialize(xar_t x);
void xar_serialize(xar_t x, const char *file);