]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/multimeda: add taglib package
authorPeter Korsgaard <jacmet@sunsite.dk>
Thu, 23 Apr 2009 20:26:28 +0000 (20:26 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Thu, 23 Apr 2009 20:26:28 +0000 (20:26 -0000)
Based on patch by Sven Neumann <s.neumann@phase-zero.de>, closes #283.

package/multimedia/Config.in
package/multimedia/taglib/Config.in [new file with mode: 0644]
package/multimedia/taglib/taglib.mk [new file with mode: 0644]

index e2fc3f6660e4bfda91b486b03513a1074344f608..f6af9d69dc35df65c40304ad04da5e708beecc3a 100644 (file)
@@ -20,5 +20,6 @@ source "package/multimedia/mpg123/Config.in"
 source "package/multimedia/mplayer/Config.in"
 source "package/multimedia/speex/Config.in"
 source "package/multimedia/festival/Config.in"
+source "package/multimedia/taglib/Config.in"
 source "package/multimedia/vlc/Config.in"
 endmenu
diff --git a/package/multimedia/taglib/Config.in b/package/multimedia/taglib/Config.in
new file mode 100644 (file)
index 0000000..3d688a7
--- /dev/null
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_TAGLIB
+       bool "taglib"
+       depends on BR2_INSTALL_LIBSTDCPP
+       help
+         TagLib is a library for reading and editing the meta-data of
+          several popular audio formats. Currently it supports both ID3v1
+          and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 tags and
+          Vorbis comments in FLAC, MPC, Speex, WavPack and TrueAudio files.
+
+         http://developer.kde.org/~wheeler/taglib.html
+
+comment "taglib requires a toolchain with C++ support enabled"
+       depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/multimedia/taglib/taglib.mk b/package/multimedia/taglib/taglib.mk
new file mode 100644 (file)
index 0000000..3187f85
--- /dev/null
@@ -0,0 +1,27 @@
+#############################################################
+#
+# taglib
+#
+#############################################################
+TAGLIB_VERSION = 1.5
+TAGLIB_SOURCE = taglib-$(TAGLIB_VERSION).tar.gz
+TAGLIB_SITE = http://developer.kde.org/~wheeler/files/src
+TAGLIB_LIBTOOL_PATCH = NO
+TAGLIB_INSTALL_STAGING = YES
+
+TAGLIB_DEPENDENCIES = uclibc
+
+TAGLIB_CONF_ENV = \
+       DO_NOT_COMPILE='bindings tests examples' \
+       ac_cv_header_cppunit_extensions_HelperMacros_h=no \
+       ac_cv_header_zlib_h=$(if $(BR2_PACKAGE_ZLIB),yes,no)
+
+TAGLIB_CONF_OPT = --disable-libsuffix --program-prefix=''
+
+$(eval $(call AUTOTARGETS,package/multimedia,taglib))
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+$(TAGLIB_HOOK_POST_INSTALL):
+       rm -f $(TARGET_DIR)/usr/bin/taglib-config
+       touch $@
+endif