summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-27 15:45:17 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commitcc0e3b3db8dcd251f0af9c2a07c9893c7d42ecbc (patch)
treeb6f0c6312bbe21b24d0a4616b1ca198a2878cbaa
parentb10340ff03ab0dcca4e3b5486636c88b874f68ac (diff)
siguix: Remove streamripper.
* siguix/packages/streamripper.scm: Remove file.
-rw-r--r--siguix/packages/streamripper.scm59
1 files changed, 0 insertions, 59 deletions
diff --git a/siguix/packages/streamripper.scm b/siguix/packages/streamripper.scm
deleted file mode 100644
index cd3b700..0000000
--- a/siguix/packages/streamripper.scm
+++ /dev/null
@@ -1,59 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
-;;;
-;;; This file is NOT part of GNU Guix.
-;;;
-;;; GNU Guix is free software; you can redistribute it and/or modify it
-;;; under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 3 of the License, or (at
-;;; your option) any later version.
-;;;
-;;; GNU Guix is distributed in the hope that it will be useful, but
-;;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;;; GNU General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
-
-(define-module (siguix packages streamripper)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix download)
- #:use-module (guix build-system gnu)
- #:use-module (gnu packages)
- #:use-module (guix packages)
- #:use-module (gnu packages glib)
- #:use-module (gnu packages mp3)
- #:use-module (gnu packages audio)
- #:use-module (gnu packages xiph)
- #:use-module (gnu packages pkg-config)
- ;; #:use-module (gnu packages )
- )
-
-(define-public streamripper
- (package
- (name "streamripper")
- (version "1.64.6")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://sourceforge.net/projects/streamripper"
- "/files/streamripper%20(current)/"
- version "/streamripper-" version ".tar.gz"))
- (sha256
- (base32 "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1"))))
- (build-system gnu-build-system)
- (native-inputs
- `(("pkg-config" ,pkg-config)))
- (inputs
- `(("glib" ,glib)
- ("libmad" ,libmad)
- ("faad2" ,faad2)
- ("libvorbis" ,libvorbis)))
- (home-page "http://streamripper.sourceforge.net")
- (synopsis "Record audio streams to your hard drive")
- (description "Streamripper records shoutcast-compatible
-streams. For shoutcast style streams it finds the “meta data” or track
-separation data, and uses that as a marker for where the track should
-be separated.")
- (license license:gpl2+)))