diff options
author | bjs <bjs@pkgsrc.org> | 2007-11-08 18:39:25 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2007-11-08 18:39:25 +0000 |
commit | 0a76c589a620141ec201c86d87dd5599103e8439 (patch) | |
tree | ebc222e05bd929c6bfaec45aa827f91bc10cb8b6 /audio/libspiff/Makefile | |
parent | 5ebdf149247a6f929f29242271b7c9f57b1a1534 (diff) | |
download | pkgsrc-0a76c589a620141ec201c86d87dd5599103e8439.tar.gz |
Import libspiff-0.8.2.
LibSpiff brings XSPF playlist reading and writing support to your C++
application. Both version 0 and 1 are supported. libSpiff uses Expat for
XML parsing and CppTest for unit testing. libSpiff is the official
reference implementation for XSPF of the [9]Xiph.Org Foundation.
Features
* Full conformance to the XSPF specification
* Cross-platform (Unix, Windows, Mac OS X, ...)
* Read and write XSPF files
* XSPF-0 and XSPF-1 support
* Unicode support
* Full support for XSPF extensions
* Full support for XML namespaces
* Fast (XML parsing is done by Expat)
* Uses unit testing
* Liberal license: [10]New BSD license
Diffstat (limited to 'audio/libspiff/Makefile')
-rw-r--r-- | audio/libspiff/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/audio/libspiff/Makefile b/audio/libspiff/Makefile new file mode 100644 index 00000000000..27f1c098e70 --- /dev/null +++ b/audio/libspiff/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/11/08 18:39:25 bjs Exp $ +# + +DISTNAME= libspiff-0.8.2 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libspiff/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= bjs@NetBSD.org +HOMEPAGE= http://libspiff.sourceforge.net/ +COMMENT= XML Shareable Playlist Format (XSPF) library + +PKG_DESTDIR_SUPPORT= user-destdir + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_LANGUAGES= c c++ + +TEST_TARGET= check + +BUILDLINK_ABI_DEPENDS.expat+= expat>=2.0.0nb1 + +.include "../../textproc/expat/buildlink3.mk" +.include "../../textproc/uriparser/buildlink3.mk" + +.include "../../mk/bsd.pkg.mk" |