https://github.com/foonerd/volumio3-mpc
https://github.com/foonerd/volumio3-mpc
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/foonerd/volumio3-mpc
- Owner: foonerd
- Created: 2024-01-30T07:55:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T21:21:14.000Z (over 2 years ago)
- Last Synced: 2025-08-24T23:33:03.099Z (10 months ago)
- Size: 354 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mpc
A minimalist command line interface to MPD
This repo is intended for [Volumio music player](https://volumio.com/) MPD enhancements for armfh.
### Contents
| Folder | Content |
| ------------------ | ------------------------------------------------------------------------------------- |
| /packages/static | Compiled and ready to use packages for Volumio3. |
| /packages/debug | The usual – extra debug packages for curious minds. |
| /sources | Complete sources for this build. |
## Build notes
This is not a complete guide, only set of essential instructions for this build:
### Update your locale by appending exports:
**nano ~/.bashrc**
```
# Setting for the new UTF-8 terminal support in Volumio
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
```
```
source ~/.bashrc
```
### Update repos:
**sudo nano /etc/apt/sources.list**
```
deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
```
sudo apt update
### Install essential build packages:
sudo apt-get install build-essential fakeroot devscripts
### Install build required packages:
sudo apt install debhelper cmake bash-completion
### Install build required libraries:
sudo apt install libsndio-dev libopenmpt-dev libpcre2-dev libpipewire-0.2-dev
### Install mpc dependencies:
sudo apt build-dep mpc
### Run build:
debuild -b -uc -us
*or complete with sources*
debuild -uc -us
---
## x86 has unmet dependencies on dephelper:
**sudo nano /etc/apt/sources.list**
```
deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
deb http://ftp.uk.debian.org/debian buster-backports main
```
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6ED0E7B82643E131
sudo apt update
Additional backport packages:
sudo apt install -t buster-backports debhelper
---