source: projects/specs/trunk/e/easytag/easytag-vl.spec @ 10570

Revision 10570, 3.3 KB checked in by Takemikaduchi, 8 years ago (diff)

rebuild with gcc-5.4.0

Line 
1Summary:        Tag Editor for MP4, MP3, Ogg Vorbis, FLAC and othe music files
2Summary(ja):    MP4, MP3, Ogg Vorbis, FLAC 等に対応したタグエディタ
3Name:           easytag
4Version:        2.2.6
5Release:        2%{?_dist_release}
6License:        GPLv2+
7Group:          Applications/Multimedia
8URL:            https://wiki.gnome.org/Apps/EasyTAG
9
10Source0:        https://download.gnome.org/sources/easytag/2.2/%{name}-%{version}.tar.xz
11
12Buildroot:      %{_tmppath}/%{name}-%{version}-root
13BuildRequires:  appdata-tools
14BuildRequires:  desktop-file-utils
15BuildRequires:  docbook-dtds
16BuildRequires:  docbook-style-xsl
17BuildRequires:  flac-devel
18BuildRequires:  gtk3-devel
19BuildRequires:  id3lib-devel >= 3.7.12
20BuildRequires:  intltool
21BuildRequires:  itstool
22BuildRequires:  libid3tag-devel
23BuildRequires:  libvorbis-devel
24BuildRequires:  libxslt
25#BuildRequires: pkgconfig(opusfile)
26BuildRequires:  speex-devel
27BuildRequires:  taglib-devel
28BuildRequires:  wavpack-devel
29
30Requires(post):   desktop-file-utils
31Requires(postun): desktop-file-utils
32
33Vendor:         Project Vine
34Distribution:   Vine Linux
35
36
37%description
38EasyTAG is a utility for viewing, editing and writing the tags of MP4, MP3,
39MP2, FLAC, Ogg Opus, Ogg Speex, Ogg Vorbis, MusePack and Monkey's Audio files.
40
41%description -l ja
42EasyTAG は、MP4, MP3, MP2, FLAC, Ogg Opus, Ogg Speex, Ogg Vorbis などオーディオファイルのタグを閲覧したり編集したりするユーティリティです。
43
44
45%prep
46%setup -q
47
48%build
49%configure
50make V=1 %{?_smp_mflags}
51
52
53%install
54rm -rf %{buildroot}
55
56make DESTDIR=%{buildroot} INSTALL="install -p" install
57find %{buildroot} -type f -name "*.la" -delete
58
59%find_lang %{name} --with-gnome
60
61
62%clean
63rm -rf %{buildroot}
64
65%post
66touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
67update-desktop-database &> /dev/null || :
68
69%postun
70if [ $1 -eq 0 ] ; then
71    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
72    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
73fi
74update-desktop-database &> /dev/null || :
75
76%posttrans
77gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
78
79
80%files -f %{name}.lang
81%defattr(-,root,root,-)
82%doc COPYING ChangeLog README THANKS TODO
83%{_bindir}/easytag
84%{_datadir}/appdata/easytag.appdata.xml
85%{_datadir}/applications/%{name}.desktop
86%{_datadir}/icons/hicolor/*/apps/easytag.*
87%{_mandir}/man1/easytag.1*
88
89
90%changelog
91* Sat Jul 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.2.6-2
92- rebuild with gcc-5.4.0
93
94* Tue Mar 17 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 2.2.6-1
95- updated to 2.2.6
96
97* Tue Mar 20 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.1.7-1
98- updated to 2.1.7
99- remove mpg123 code from the source tarball
100- import patch[012] from Fedora
101
102* Mon Sep 22 2008 Shu KONNO <owa@bg.wakwak.com> 2.1-1vl5
103- applied new versioning policy, spec in utf-8
104
105* Sat Aug 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.1-0vl2
106- rebuilt with flac-1.2.0
107
108* Mon Jun 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.1-0vl1
109- new upstream release
110- rebuilt with new toolchain
111
112* Sun Mar 11 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0-0vl3
113- add audio-file-player.patch (patch0)
114  to use audacious as default audio file player instead of xmms
115
116* Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0-0vl2
117- add Requires(post,postun): ldconfig, desktop-file-utils
118
119* Fri Mar 09 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.0-0vl1
120- initial build
Note: See TracBrowser for help on using the repository browser.