Skip to content

Instantly share code, notes, and snippets.

@coolacid
Last active December 14, 2018 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolacid/4c9d5113070bd4140f46f1a2d402019a to your computer and use it in GitHub Desktop.
Save coolacid/4c9d5113070bd4140f46f1a2d402019a to your computer and use it in GitHub Desktop.
daapd install
# Ubuntu Server 18.04 Base
wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add -
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/stretch.list
apt update
sudo apt-get install \
build-essential git autotools-dev autoconf libtool gettext gawk gperf \
antlr3 libantlr3c-dev libconfuse-dev libunistring-dev libsqlite3-dev \
libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev \
libasound2-dev libmxml-dev libgcrypt11-dev libavahi-client-dev zlib1g-dev \
libevent-dev libplist-dev libsodium-dev libjson-c-dev libwebsockets-dev \
libcurl4-openssl-dev libspotify-dev avahi-daemon
git clone https://github.com/ejurgensen/forked-daapd.git
cd forked-daapd
autoreconf -i
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-spotify --with-libwebsockets
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment