#!/bin/sh set -ex git clone https://github.com/irwir/id3lib.git cd id3lib sh configure make install cd / git clone https://github.com/taglib/taglib.git cd taglib cmake3 -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release . make install cd / wget http://ftp.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz tar xf gengetopt-2.23.tar.xz cd gengetopt-2.23 sh configure make install cd / git clone https://github.com/KDE/kid3.git cd kid3 cmake3 . -DCMAKE_BUILD_TYPE=MinSizeRel -DWITH_APPS=CLI -DWITH_VORBIS=OFF -DWITH_FLAC=OFF -DWITH_CHROMAPRINT=OFF -DWITH_DBUS=OFF -DWITH_READLINE=OFF -DQT_MOC_EXECUTABLE=/usr/bin/automoc4 -DBUILD_SHARED_LIBS=OFF make