Warning, /multimedia/kid3/INSTALL is written in an unsupported language. File is not indexed.

0001 * TO INSTALL
0002 ** Requirements
0003 
0004 Qt, optional KDE, id3lib, TagLib, libogg, libvorbis, libvorbisfile, libFLAC++,
0005 libFLAC, Chromaprint, mp4v2.
0006 
0007 ** Linux
0008 
0009 *** Build KDE, Qt and CLI applications
0010 
0011 cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
0012 make
0013 make install
0014 
0015 *** Customize build options
0016 
0017 For a customized build, several build options are available. They can be set
0018 with CMake variable definitions (-D OPTION=VAL, in the same way as
0019 CMAKE_BUILD_TYPE in the example above).
0020 
0021 CMAKE_BUILD_TYPE: Debug, Release, RelWithDebInfo or MinSizeRel
0022 CMAKE_INSTALL_PREFIX: Installation directory, default is /usr/local
0023 WITH_APPS: Which applications to build, possible values are Qt, CLI, KDE, Qml,
0024 multiple values can be separated by semicolons, default is "Qt;CLI;KDE".
0025 For example, to build only the Qt and CLI applications, set it to "Qt;CLI".
0026 
0027 The following options are ON by default and can be set to OFF to disable a
0028 feature:
0029 
0030 BUILD_SHARED_LIBS: build with shared libraries
0031 WITH_TAGLIB: build with TagLib
0032 WITH_ID3LIB: build with id3lib
0033 WITH_VORBIS: build with Ogg/Vorbis
0034 WITH_FLAC: build with FLAC
0035 WITH_CHROMAPRINT: build with Chromaprint
0036 WITH_DBUS: build with D-Bus
0037 WITH_READLINE: build with readline
0038 
0039 The following options are OFF by default and can be set to ON to enable:
0040 
0041 WITH_MP4V2: build with mp4v2
0042 WITH_FFMPEG: force use of FFmpeg for Chromaprint decoding
0043 WITH_CHROMAPRINT_FFMPEG: link FFmpeg only for Chromaprint FFT
0044 WITH_GSTREAMER: force use of GStreamer for Chromaprint decoding
0045 WITH_QAUDIODECODER: force use of QAudioDecoder for Chromaprint decoding
0046 WITH_NO_MANCOMPRESS: disable compressed manpages
0047 
0048 The install directory can be assigned to DESTDIR
0049 
0050 *** Create Debian Packages
0051 
0052 Make sure that you have installed all packages listed in deb/control,
0053 section Build-Depends.
0054 
0055 ./build.sh deb
0056 
0057 *** Create RPM Package
0058 
0059 Copy kid3.spec into the SPEC directory
0060 and the tar.gz archive into the SOURCES directory.
0061 
0062 rpmbuild -ba kid3.spec
0063 
0064 
0065 ** Windows, macOS and Android
0066 
0067 See instructions at the top of build.sh.