Last active
December 14, 2018 20:53
-
-
Save coolacid/4c9d5113070bd4140f46f1a2d402019a to your computer and use it in GitHub Desktop.
daapd install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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