-
Notifications
You must be signed in to change notification settings - Fork 217
Building the Package(s) Yourself
Jason Gray edited this page May 15, 2023
·
3 revisions
All that's required is Docker on a *nix system with git and Make. Packages can be built on any amd64 platform that runs docker.
On Debian/Ubuntu you can install git and Make with:
sudo apt-get install git build-essential
clone
and cd
in.
git clone https://github.com/dtcooper/raspotify
cd raspotify
Build just the armhf
package.
make armhf
Build just the arm64
package.
make arm64
Build just the amd64
package.
make amd64
Build all packages.
make
The .deb
file(s) will be in your project directory.