2010-09-21 12:53:13 +02:00
|
|
|
#
|
2011-02-03 01:49:17 +01:00
|
|
|
# spec file for package picard
|
2010-09-21 12:53:13 +02:00
|
|
|
#
|
2015-12-08 19:42:59 +01:00
|
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
2010-09-21 12:53:13 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: picard
|
2015-03-12 10:01:45 +01:00
|
|
|
Version: 1.3.2
|
2012-02-21 12:14:04 +01:00
|
|
|
Release: 0
|
2010-09-21 12:53:13 +02:00
|
|
|
Summary: The Next Generation MusicBrainz Tagger
|
2012-02-20 11:36:53 +01:00
|
|
|
License: GPL-2.0+
|
2010-09-21 12:53:13 +02:00
|
|
|
Group: Productivity/Multimedia/Sound/Utilities
|
|
|
|
Url: http://musicbrainz.org/doc/PicardTagger
|
2011-07-25 12:17:02 +02:00
|
|
|
Source0: http://ftp.musicbrainz.org/pub/musicbrainz/picard/%{name}-%{version}.tar.gz
|
|
|
|
# http://wiki.musicbrainz.org/Picard_Plugins
|
|
|
|
Source2: http://dispuutivv.nl/~jan/bonusdisc.py
|
|
|
|
Source8: http://users.musicbrainz.org/~brianfreud/SearchAmazon3.py
|
|
|
|
Source9: http://users.musicbrainz.org/~brianfreud/SearchAMG.py
|
|
|
|
Source10: http://users.musicbrainz.org/~brianfreud/SearchCastAlbums3.py
|
|
|
|
Source11: http://users.musicbrainz.org/~brianfreud/SearchDiscogs3.py
|
|
|
|
Source12: http://users.musicbrainz.org/~brianfreud/SearchFilmMusziek3.py
|
|
|
|
Source13: http://users.musicbrainz.org/~brianfreud/SearchGMR.py
|
|
|
|
Source14: http://users.musicbrainz.org/~brianfreud/SearchGoogle3.py
|
|
|
|
Source15: http://users.musicbrainz.org/~brianfreud/SearchLortelArchives3.py
|
|
|
|
Source16: http://users.musicbrainz.org/~brianfreud/SearchSoundtrackCollector3.py
|
|
|
|
Source17: http://users.musicbrainz.org/~brianfreud/SearchSoundtrackINFO3.py
|
2012-02-21 12:14:04 +01:00
|
|
|
BuildRequires: desktop-file-utils
|
|
|
|
BuildRequires: gcc-c++
|
2010-09-21 12:53:13 +02:00
|
|
|
BuildRequires: libdiscid-devel
|
2012-02-21 12:14:04 +01:00
|
|
|
BuildRequires: libofa-devel
|
|
|
|
BuildRequires: python-devel
|
2012-04-11 15:35:39 +02:00
|
|
|
BuildRequires: python-mutagen
|
|
|
|
Requires: python-mutagen
|
2012-02-21 12:14:04 +01:00
|
|
|
BuildRequires: hicolor-icon-theme
|
|
|
|
BuildRequires: python-qt4
|
|
|
|
BuildRequires: update-desktop-files
|
2012-02-23 12:06:28 +01:00
|
|
|
Requires: python-qt4
|
2015-12-08 19:57:29 +01:00
|
|
|
Recommends: chromaprint-fpcalc
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
MusicBrainz Picard is a cross-platform MusicBrainz tag editor written in
|
|
|
|
Python. Picard Tagger is intended to be the next generation of tagger for
|
|
|
|
MusicBrainz, with a focus on album oriented tagging as opposed to track based
|
|
|
|
tagging and cross platform compatibility.
|
|
|
|
|
|
|
|
%lang_package
|
2015-03-12 10:01:45 +01:00
|
|
|
|
2010-09-21 12:53:13 +02:00
|
|
|
%prep
|
2015-03-12 10:01:45 +01:00
|
|
|
%setup -q -n %{name}-release-%{version}
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%build
|
2012-02-21 12:14:04 +01:00
|
|
|
export CFLAGS="%{optflags}"
|
2011-07-25 12:17:02 +02:00
|
|
|
cat > %{name}_libdiscid_dummy.c <<-EOF
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <discid/discid.h>
|
|
|
|
int main(void) {
|
|
|
|
printf("Dummy to generate correct libdiscid.so rpm dependency.\n");
|
|
|
|
discid_free(discid_new());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
gcc -Wall -s $CFLAGS -o %{name}_libdiscid_dummy %{name}_libdiscid_dummy.c -ldiscid
|
|
|
|
# there is some upstream confusion about what the SONAME of libdiscid is supposed to be
|
|
|
|
libdiscid_so="`readelf --wide --dynamic picard_libdiscid_dummy | sed -n '/(NEEDED).*libdiscid.so/s@^\(.*\[\)\([^]]\+\).*@\2@p'`"
|
|
|
|
sed -i~ -e "s@^\([[:blank:]]\+\)\(libName[[:blank:]]*=[[:blank:]]*'\)\(libdiscid.so.0\)\('[[:blank:]]*\)@\1\2${libdiscid_so}\4 # was '\3'@" picard/disc.py
|
|
|
|
if diff -u picard/disc.py~ picard/disc.py ; then : ; fi
|
|
|
|
#
|
2012-02-21 12:14:04 +01:00
|
|
|
python setup.py config
|
|
|
|
python setup.py build
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%install
|
2012-02-21 12:14:04 +01:00
|
|
|
python setup.py install --skip-build --prefix=%{_prefix} --root=%{buildroot}
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
# install plugins
|
2012-02-21 12:14:04 +01:00
|
|
|
PLUGINDIR=%{buildroot}%{py_sitedir}/picard/plugins/
|
2010-09-21 12:53:13 +02:00
|
|
|
install -m 0644 %{SOURCE2} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE8} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE9} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE10} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE11} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE12} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE13} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE14} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE15} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE16} ${PLUGINDIR}
|
|
|
|
install -m 0644 %{SOURCE17} ${PLUGINDIR}
|
|
|
|
|
|
|
|
%suse_update_desktop_file -G "Music Tagger" -N "picard" picard
|
|
|
|
|
2015-03-12 10:01:45 +01:00
|
|
|
%find_lang %{name} %{name}.lang
|
|
|
|
%find_lang %{name}-countries %{name}.lang
|
|
|
|
%find_lang %{name}-attributes %{name}.lang
|
2010-09-21 12:53:13 +02:00
|
|
|
|
2012-02-21 12:14:04 +01:00
|
|
|
mkdir -vp %{buildroot}/%{_libdir}/%{name}
|
|
|
|
cp -avL %{name}_libdiscid_dummy %{buildroot}/%{_libdir}/%{name}
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%post
|
2012-04-11 15:35:39 +02:00
|
|
|
%icon_theme_cache_post
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%postun
|
2012-04-11 15:35:39 +02:00
|
|
|
%icon_theme_cache_postun
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc AUTHORS.txt COPYING.txt NEWS.txt
|
|
|
|
%{_bindir}/picard
|
2012-04-11 15:35:39 +02:00
|
|
|
%{_libdir}/%{name}
|
2010-09-21 12:53:13 +02:00
|
|
|
%{_datadir}/applications/%{name}.desktop
|
2012-04-11 15:35:39 +02:00
|
|
|
%{python_sitearch}/picard*
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/picard.png
|
|
|
|
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%defattr(-,root,root)
|
2010-09-21 12:53:13 +02:00
|
|
|
|
|
|
|
%changelog
|