diff options
author | Pierre Langlois <[email protected]> | 2019-10-12 22:30:08 +0100 |
---|---|---|
committer | Danny Milosavljevic <[email protected]> | 2019-10-13 13:09:02 +0200 |
commit | 55af64560543409789b4ab61d9bf4c2457e8a3ac (patch) | |
tree | 259884eafce417a389d42738c51b0ab0bb6a1fed | |
parent | b5f6700fb454edad46e84cc46edb3654e42b5172 (diff) |
gnu: easytag: Fix mp3 support.
* gnu/packages/music.scm (easytag)[arguments]: Add 'Name', 'Description' and
'Version' entries to temporary id3tag.pc pkg-config file. Terminate phases
with #t.
Signed-off-by: Danny Milosavljevic <[email protected]>
-rw-r--r-- | gnu/packages/music.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index ac4333168c..4c74ae5ffa 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2017 ng0 <[email protected]> ;;; Copyright © 2017 Rodger Fox <[email protected]> ;;; Copyright © 2017, 2018, 2019 Nicolas Goaziou <[email protected]> -;;; Copyright © 2017, 2018 Pierre Langlois <[email protected]> +;;; Copyright © 2017, 2018, 2019 Pierre Langlois <[email protected]> ;;; Copyright © 2017 Arun Isaac <[email protected]> ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 nee <[email protected]> @@ -593,12 +593,17 @@ enable professional yet simple and intuitive pattern-based drum programming.") "prefix=~@*~a~@ libdir=${prefix}/lib~@ includedir=${prefix}/include~@ + + Name: libid3tag~@ + Description:~@ + Version:~@ Libs: -L${libdir} -lid3tag -lz~@ Cflags: -I${includedir}~%" libid3tag))) (setenv "PKG_CONFIG_PATH" (string-append (getenv "PKG_CONFIG_PATH") - ":" (getcwd) "/pkgconfig"))))) + ":" (getcwd) "/pkgconfig")) + #t))) (add-after 'unpack 'patch-makefile (lambda _ (substitute* "Makefile.in" @@ -606,7 +611,8 @@ enable professional yet simple and intuitive pattern-based drum programming.") ;; script with /bin/sh hard-coded. (("/bin/sh") (which "sh")) ;; Don't create 'icon-theme.cache'. - (("gtk-update-icon-cache") "true"))))))) + (("gtk-update-icon-cache") "true")) + #t))))) (home-page "https://wiki.gnome.org/Apps/EasyTAG") (synopsis "Simple application for viewing and editing tags in audio files") (description |