diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2017-02-25 12:20:34 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-12-05 08:05:06 +0100 |
commit | 43925703e851d9058823b70cbe67b7169558c0a9 (patch) | |
tree | d057c327e0fb3c093c6328995216ddf3a34ba962 /gnu/packages/music.scm | |
parent | 1fa37d1b55b1d25a9d20c7b50a531b763e7a1398 (diff) | |
download | patches-43925703e851d9058823b70cbe67b7169558c0a9.tar patches-43925703e851d9058823b70cbe67b7169558c0a9.tar.gz |
gnu: Add libmygpo-qt.
* gnu/packages/music.scm (libmygpo-qt): New variable.
* gnu/packages/patches/libmygpo-qt-fix-jsoncreatortest.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 173fdfaad1..886c9bac29 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -3407,3 +3407,30 @@ the electronic or dubstep genre.") designed to make a developer's life easy when trying to use the APIs provided by The Echo Nest.") (license license:gpl2+))) + +(define-public libmygpo-qt + (package + (name "libmygpo-qt") + (version "1.0.9") + (source (origin + (method url-fetch) + (uri (string-append "http://stefan.derkits.at/files/" + "libmygpo-qt/libmygpo-qt." version ".tar.gz")) + (sha256 + (base32 + "1wsgh2vjnd52rkvpncj1ycpbp84sj9hh12ija46b42z9mmqf2jm4")) + (patches + (search-patches "libmygpo-qt-fix-jsoncreatortest.patch")))) + (build-system cmake-build-system) + (arguments + '(#:configure-flags '("-DBUILD_WITH_QT4=OFF"))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("qt" ,qtbase))) + (home-page "http://wiki.gpodder.org/wiki/Libmygpo-qt") + (synopsis "Qt/C++ library wrapping the gpodder web service") + (description "@code{libmygpo-qt} is a Qt/C++ library wrapping the +@url{https://gpodder.net} APIs. It allows applications to discover, manage +and track podcasts.") + (license license:lgpl2.1+))) |