blob: 7be96be510075cff1e95fcb9fe7aefec3e3b1d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
require 'formula'
class Dvdauthor <Formula
url 'http://downloads.sourceforge.net/project/dvdauthor/dvdauthor/0.6.14/dvdauthor-0.6.14.tar.gz'
homepage 'http://dvdauthor.sourceforge.net/'
md5 'bd646b47950c4091ffd781d43fd2c5e9'
depends_on 'libdvdread'
depends_on 'libpng'
def patches
# won't compile without including iconv headers in readxml.c
DATA
end
def install
system "./configure",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-debug",
"--disable-dependency-tracking"
system "make"
# regular install will error out due to attempts to create the same
# directories twice. mkdir -p will mitigate this.
ENV['MKDIRPROG'] = '/bin/mkdir -p'
system "make install"
end
end
__END__
diff --git a/src/readxml.c b/src/readxml.c
index e96f869..5ff2b5d 100644
--- a/src/readxml.c
+++ b/src/readxml.c
@@ -28,6 +28,8 @@
#include <libxml/xmlreader.h>
+#include <iconv.h>
+
#include "readxml.h"
#ifdef HAVE_LANGINFO_CODESET
|