New formula libxspf
libxspf (formerly called libSpiff) brings XSPF playlist reading and writing support to your C++ application.
This commit is contained in:
parent
bb1413c837
commit
1da481085d
1 changed files with 16 additions and 0 deletions
16
Formula/libxspf.rb
Normal file
16
Formula/libxspf.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Libxspf <Formula
|
||||
url 'http://downloads.xiph.org/releases/xspf/libxspf-1.2.0.tar.bz2'
|
||||
homepage 'http://libspiff.sourceforge.net/'
|
||||
md5 'eceb3bf8fd4af3b09ea06c5c029cd647'
|
||||
|
||||
depends_on 'cpptest'
|
||||
depends_on 'uriparser'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue