3b4dac6ddd
Having gone through our patches it's clear that p1 is more standard. Also fixed a bug where returning DATA outside of an array would fail to patch.
33 lines
741 B
Ruby
33 lines
741 B
Ruby
require 'brewkit'
|
|
|
|
class Xar <Formula
|
|
@url='http://xar.googlecode.com/files/xar-1.5.2.tar.gz'
|
|
@homepage='http://code.google.com/p/xar/'
|
|
@md5='8eabb055d3387b8edc30ecfb08d2e80d'
|
|
|
|
def patches
|
|
DATA
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
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);
|