forked from dtcooper/raspotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor fixes + better templating with jinja2
- Loading branch information
Showing
5 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
# You'll need my GPG_KEY for signing, which I'm pretty sure you don't have :P | ||
APT_GPG_KEY?=2CC9B80F5AE2B7ACEFF2BA3209146F2F7953A455 | ||
APT_GH_PAGES_REPO?[email protected]:dtcooper/raspotify.git | ||
RASPOTIFY_AUTHOR?=David Cooper <[email protected]> | ||
|
||
raspotify_*.deb: | ||
docker build -t raspotify . | ||
|
@@ -11,13 +12,14 @@ raspotify_*.deb: | |
--volume "$(CURDIR):/mnt/raspotify" \ | ||
--env PERMFIX_UID="$$(id -u)" \ | ||
--env PERMFIX_GID="$$(id -g)" \ | ||
--env RASPOTIFY_AUTHOR="$(RASPOTIFY_AUTHOR)" \ | ||
raspotify /mnt/raspotify/build.sh | ||
|
||
clean: | ||
rm -rf *.deb librespot raspotify/usr raspotify/DEBIAN/control apt-repo | ||
|
||
distclean: clean | ||
docker rmi raspotify | ||
docker rmi -f raspotify || true | ||
|
||
apt: apt-repo | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
Package: raspotify | ||
Version: <<<VERSION>>> | ||
Version: {{ VERSION }} | ||
Section: base | ||
Priority: optional | ||
Architecture: armhf | ||
Depends: libasound2, adduser | ||
Maintainer: David Cooper <[email protected]> | ||
Maintainer: {{ RASPOTIFY_AUTHOR }} | ||
Description: Raspotify | ||
Spotify Connect client + daemon for the Raspberry Pi, based off librespot. | ||
[Built with {{ RUST_VERSION }}] |
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