43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
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'
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "ab194a0906d4f987bbd61b29d4f9de7c8698e2f5" => :yosemite
|
|
sha1 "56c55987e4c83926e160de92b6c929be9b28dcf7" => :mavericks
|
|
sha1 "341ddf653ddcc41d7b24e47299202ea284bf8721" => :mountain_lion
|
|
end
|
|
|
|
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
|
|
patch :DATA
|
|
|
|
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)
|