gnu: ripit: Use archived source and home page.
* gnu/packages/cdrom.scm (ripit)[source, home-page]: Use archived URLs.
This commit is contained in:
parent
674495b7e0
commit
3dc8b46579
|
@ -713,16 +713,20 @@ session, and it can create M3U playlists.")
|
||||||
(package
|
(package
|
||||||
(name "ripit")
|
(name "ripit")
|
||||||
(version "3.9.0")
|
(version "3.9.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "http://www.suwald.com/ripit/ripit-"
|
(method url-fetch)
|
||||||
version ".tar.gz"))
|
;; The original suwald.com domain has expired.
|
||||||
(sha256
|
(uri (list
|
||||||
(base32
|
(string-append "https://web.archive.org/web/20160327050927/"
|
||||||
"0ap71x477jy9c4jiqazb3y45hxdxm3jbq24x05g3vjyqzigi4x1b"))))
|
"http://suwald.com/ripit/ripit-" version ".tar.gz")
|
||||||
|
(string-append "https://ponce.cc/slackware/sources/repo/ripit-"
|
||||||
|
version ".tar.gz")))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ap71x477jy9c4jiqazb3y45hxdxm3jbq24x05g3vjyqzigi4x1b"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test suite.
|
`(#:tests? #f ; no test suite
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
|
@ -744,7 +748,8 @@ session, and it can create M3U playlists.")
|
||||||
("vorbis-tools" ,vorbis-tools)
|
("vorbis-tools" ,vorbis-tools)
|
||||||
("wavpack" ,wavpack)
|
("wavpack" ,wavpack)
|
||||||
("perl-cddb-get" ,perl-cddb-get)))
|
("perl-cddb-get" ,perl-cddb-get)))
|
||||||
(home-page "http://www.suwald.com/ripit/about.php")
|
(home-page (string-append "https://web.archive.org/web/20170119092156/"
|
||||||
|
"http://www.suwald.com/ripit/about.php"))
|
||||||
(synopsis "Command-line program to extract audio CDs")
|
(synopsis "Command-line program to extract audio CDs")
|
||||||
(description "RipIT is used to extract audio from CDs.")
|
(description "RipIT is used to extract audio from CDs.")
|
||||||
(license gpl2)))
|
(license gpl2)))
|
||||||
|
|
Loading…
Reference in New Issue