aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libxspf.rb
blob: 8106902af6b53f3c1ee1eb3c39c1014c8d505d31 (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
require 'formula'

class Libxspf < Formula
  homepage 'http://libspiff.sourceforge.net/'
  url 'http://downloads.xiph.org/releases/xspf/libxspf-1.2.0.tar.bz2'
  sha1 '23bbc0573636928210f42699029941dd06b20a1d'

  depends_on 'pkg-config' => :build
  depends_on 'cpptest'
  depends_on 'uriparser'

  # Fix build against clang and GCC 4.7+
  # http://git.xiph.org/?p=libxspf.git;a=commit;h=7f1f68d433f03484b572657ff5df47bba1b03ba6
  def patches; DATA; end

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end

__END__
diff --git a/examples/read/read.cpp b/examples/read/read.cpp
index 411f892..b66a25c 100644
--- a/examples/read/read.cpp
+++ b/examples/read/read.cpp
@@ -43,6 +43,7 @@
 #include <cstdio>
 #include <cstdlib> // MAX_PATH
 #include <climits> // PATH_MAX
+#include <unistd.h>
 
 
 #if defined(__WIN32__) || defined(WIN32)