homebrew-core/Formula/libxspf.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

42 lines
1.2 KiB
Ruby

class Libxspf < Formula
desc "C++ library for XSPF playlist reading and writing"
homepage "http://libspiff.sourceforge.net/"
url "http://downloads.xiph.org/releases/xspf/libxspf-1.2.0.tar.bz2"
sha256 "ba9e93a0066469b074b4022b480004651ad3aa5b4313187fd407d833f79b43a5"
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)