I've got an original Raspberry Pi B with a WiFi dongle that I have hooked directly to the USB input of my JVC Receiver.
Grab the "Lite" version of Raspbian because you won't need any windows.
At press time the most recent version is 2017-04-10-raspbian-jessie-lite.zip
Setup your accounts/wifi/localization the way you like.
Update and upgrade/dist-upgrade to get everything current.
Reboot to make sure everything is on the level.
Go to: https://github.com/mikebrady/shairport-sync and skim the instructions so you know what you are doing.
Install All The Things!
sudo apt-get install build-essential git xmltoman autoconf automake libtool libdaemon-dev libasound2-dev libpopt-dev libconfig-dev avahi-daemon libavahi-client-dev libsoxr-dev libssl-dev
Clone All The Things!git clone https://github.com/mikebrady/shairport-sync.gitChange Directory
cd shairport-syncSetup Configuration Script
autoreconf -i -fConfigure All The Things!
./configure --sysconfdir=/etc --with-alsa --with-avahi --with-ssl=openssl --with-soxr --with-systemdMake All The Things!
make
Create Shairport-Sync Group for Security
getent group shairport-sync &>/dev/null || sudo groupadd -r shairport-sync >/dev/nullCreate Shairport-Sync User for Security
getent passwd shairport-sync &> /dev/null || sudo useradd -r -M -g shairport-sync -s /usr/bin/nologin -G audio shairport-sync >/dev/nullInstall All The Things!
sudo make installLaunch on System Boot
sudo systemctl enable shairport-syncConfigure All The Things!
sudo nano /etc/shairport-sync.confI added a name to the "general" section
name = "MusicPi";I added some output info to the "alsa" section
interpolation = "soxr";
output_device = "hw:1";