mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-29 02:07:55 +02:00
Add Void Linux installation instructions
This commit is contained in:
parent
effa0e7115
commit
a8bfc32be5
1 changed files with 21 additions and 9 deletions
30
README.md
30
README.md
|
@ -47,7 +47,9 @@ Please follow this [guide](doc/build.md) to build Snapcast for
|
|||
* [Raspberry Pi](doc/build.md#raspberry-pi-cross-compile)
|
||||
|
||||
### Install Linux packages
|
||||
For Debian download the package for your CPU architecture from the [latest release page](https://github.com/badaix/snapcast/releases/latest), e.g. for Raspberry Pi `snapclient_0.x.x_armhf.deb`
|
||||
#### Debian
|
||||
Download the package for your CPU architecture from the [latest release page](https://github.com/badaix/snapcast/releases/latest), e.g. for Raspberry Pi `snapclient_0.x.x_armhf.deb`
|
||||
|
||||
Install the package:
|
||||
|
||||
$ sudo dpkg -i snapclient_0.x.x_armhf.deb
|
||||
|
@ -56,32 +58,42 @@ Install missing dependencies:
|
|||
|
||||
$ sudo apt-get -f install
|
||||
|
||||
On OpenWrt do:
|
||||
#### OpenWrt
|
||||
|
||||
$ opkg install snapclient_0.x.x_ar71xx.ipk
|
||||
|
||||
On Alpine Linux do:
|
||||
#### Alpine Linux
|
||||
|
||||
$ apk add snapcast
|
||||
|
||||
# Or for just the client:
|
||||
Or for just the client:
|
||||
|
||||
$ apk add snapcast-client
|
||||
$ apk add snapcast-client
|
||||
|
||||
# Or for just the server:
|
||||
Or for just the server:
|
||||
|
||||
$ apk add snapcast-server
|
||||
$ apk add snapcast-server
|
||||
|
||||
On Gentoo Linux do:
|
||||
#### Gentoo Linux:
|
||||
|
||||
$ emerge --ask media-sound/snapcast
|
||||
|
||||
On Archlinux, snapcast is available through the AUR. To install, use your favorite AUR helper, or do:
|
||||
#### Arch Linux
|
||||
Snapcast is available through the AUR. To install, use your favorite AUR helper, or do:
|
||||
|
||||
$ git clone https://aur.archlinux.org/snapcast
|
||||
$ cd snapcast
|
||||
$ makepkg -si
|
||||
|
||||
#### Void Linux
|
||||
To install the client:
|
||||
|
||||
# xbps-install snapclient
|
||||
|
||||
To install the server:
|
||||
|
||||
# xbps-install snapserver
|
||||
|
||||
SnapOS
|
||||
------
|
||||
For the brave of you, there is a guide with buildfiles available to build [SnapOS](https://github.com/badaix/snapos), a small and fast-booting OS to run Snapcast, coming in two flavors: [Buildroot](https://github.com/badaix/snapos/blob/master/buildroot-external/README.md) based, or [OpenWrt](https://github.com/badaix/snapos/tree/master/openwrt) based. Please note that there are no pre-built firmware packages available.
|
||||
|
|
Loading…
Add table
Reference in a new issue