From 69088d9306f191e5723ffe6a8ef45abefb45a017 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 27 Aug 2016 23:25:31 +0100 Subject: [PATCH 1/4] add badges to README --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 411e865..841cde7 100755 --- a/README.md +++ b/README.md @@ -6,10 +6,17 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r * [Podcast](https://www.linuxserver.io/index.php/category/podcast/) covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! # linuxserver/Headphones -![https://github.com/rembo10/headphones](http://i.imgur.com/5vSV3Gkl.png) +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/headphones.svg)][hub] +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/headphones.svg)][hub] +[![Build Status](http://jenkins.linuxserver.io:8080/buildStatus/icon?job=Dockers/LinuxServer.io/linuxserver-headphones)](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-headphones/) +[hub]: https://hub.docker.com/r/linuxserver/headphones/ + Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole. +[![headphones](https://github.com/rembo10/headphones](http://i.imgur.com/5vSV3Gkl.png)][headurl] +[headurl]: https://github.com/rembo10/headphones + ## Usage ``` @@ -57,5 +64,6 @@ Access WebUI at http://localhost:8181 and walk through the wizard. ## Version History ++ **27.08.16:** Add badges to README. + **08.08.16:** Rebase to alpine linux. + **18.07.15:** Inital Release From 16286a73374408de15a5adef50c64b290d2fe73b Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 27 Aug 2016 23:27:13 +0100 Subject: [PATCH 2/4] add badges to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 841cde7..685cf6e 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole. -[![headphones](https://github.com/rembo10/headphones](http://i.imgur.com/5vSV3Gkl.png)][headurl] +[![headphones](http://i.imgur.com/5vSV3Gkl.png)][headurl] [headurl]: https://github.com/rembo10/headphones ## Usage From 316997027c4d136530b758662f458fb5ad24bcff Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sun, 28 Aug 2016 00:07:55 +0100 Subject: [PATCH 3/4] compile shntool --- Dockerfile | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index cea26f7..25945fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,39 @@ MAINTAINER smdion ,sparklyballs RUN \ apk add --no-cache \ ffmpeg \ - mc && \ - apk add --no-cache --repository \ - http://nl.alpinelinux.org/alpine/edge/testing \ - shntool + mc + +# install build packages +RUN \ + apk add --no-cache --virtual=build-dependencies \ + g++ \ + gcc \ + make && \ + +# compile shntool + mkdir -p \ + /tmp/shntool && \ + curl -o \ + /tmp/shntool-src-tar.gz -L \ + http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz && \ + tar xf /tmp/shntool-src-tar.gz -C \ + /tmp/shntool --strip-components=1 && \ + cd /tmp/shntool && \ + ./configure \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --sysconfdir=/etc && \ + make && \ + make install && \ + +# cleanup + apk del --purge \ + build-dependencies && \ + rm -rf \ + /tmp/* \ + /usr/lib/*.la # add local files COPY root/ / From dc5a506efbe81ac54dc84700ca784713e7ef55ae Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sun, 28 Aug 2016 00:09:45 +0100 Subject: [PATCH 4/4] compile shntool --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 685cf6e..227cd0e 100755 --- a/README.md +++ b/README.md @@ -64,6 +64,6 @@ Access WebUI at http://localhost:8181 and walk through the wizard. ## Version History -+ **27.08.16:** Add badges to README. ++ **27.08.16:** Add badges to README, compile shntool. + **08.08.16:** Rebase to alpine linux. + **18.07.15:** Inital Release