me
/
guix
Archived
1
0
Fork 0

gnu: Add mp3guessenc.

* gnu/packages/audio.scm (mp3guessenc): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Vinicius Monego 2021-10-09 15:28:19 +00:00 committed by Leo Famulari
parent 38582fb53c
commit 747b98b32f
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 27 additions and 0 deletions

View File

@ -4060,6 +4060,33 @@ machine-readable ASCII format.")
(home-page "https://github.com/svend/cuetools")
(license license:gpl2+)))
(define-public mp3guessenc
(package
(name "mp3guessenc")
(version "0.27.5")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/mp3guessenc/mp3guessenc-"
(version-major+minor version) "/mp3guessenc-"
version ".tar.gz"))
(sha256
(base32 "1fa3sbwwn4p2v1749lzy040bfy1xfd574mf2frwgg9ikgk3vlb3c"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no tests
#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ; no configure phase
(home-page "https://mp3guessenc.sourceforge.io")
(synopsis "Analyze MPEG layer I/II/III files")
(description "mp3guessenc is a command line utility that tries to detect the
encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio
file (any layer) and print a lot of useful information.")
(license license:lgpl2.1+)))
(define-public shntool
(package
(name "shntool")