source: projects/specs/branches/6/t/taglib/taglib-vl.spec @ 7451

Revision 7451, 2.9 KB checked in by shaolin, 11 years ago (diff)

VineSeed/taglib, VinePlus?/6/taglib:

  • new upstream release
Line 
1Name: taglib
2Summary: TagLib Audio Meta-Data Library
3Version: 1.8
4Release: 1%{?_dist_release}
5
6Group: System Environment/Libraries
7License: LGPLv2
8URL: http://taglib.github.com/
9
10Source: http://taglib.github.com/releases/taglib-%{version}.tar.gz
11Patch0: http://www.cc.rim.or.jp/~yaz/taglib-1.4_wchar.diff
12Patch2: taglib-1.5rc1-multilib.patch
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15BuildRequires: cmake >= 2.6.0
16BuildRequires: pkgconfig
17BuildRequires: zlib-devel
18
19%description
20TagLib is a library for reading and editing the meta-data of
21several popular audio formats. Currently it supports both ID3v1
22and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 tags
23and Vorbis comments in FLAC files.
24
25%package devel
26Summary: TagLib Development environment
27Group: Development/Libraries
28Requires: %{name} = %{version}-%{release}
29
30%description devel
31Libraries and header files required for TagLib development.
32
33%prep
34%setup -q
35%patch0 -p1 -b .wchar
36%patch2 -p1 -b .multilib
37
38%build
39mkdir -p %{_target_platform}
40pushd %{_target_platform}
41%cmake -DWITH_ASF=1 -DWITH_MP4=1 ..
42popd
43
44make %{?_smp_mflags} -C %{_target_platform}
45
46%install
47rm -rf $RPM_BUILD_ROOT
48make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
49
50rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%post -p /sbin/ldconfig
56
57%postun -p /sbin/ldconfig
58
59%files
60%defattr(-,root,root)
61%doc AUTHORS COPYING.* NEWS
62%{_libdir}/lib*.so.*
63
64%files devel
65%defattr(-,root,root)
66%{_bindir}/*
67%{_includedir}/taglib
68#{_libdir}/lib*.la
69%{_libdir}/lib*.so
70%{_libdir}/pkgconfig/*.pc
71
72%changelog
73* Sun Feb 10 2013 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.8-1
74- new upstream release
75
76* Mon Sep 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.2-1
77- new upstream release
78
79* Sun Oct 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.3-1
80- new upstream release
81- added build option for supporting ASF and MP4 files
82- added Patch2 from Fedora
83
84* Sat Oct 02 2010 Shu KONNO <owa@bg.wakwak.com> 1.6.1-2
85- rebuilt with rpm-4.8.1 for pkg-config
86
87* Fri Jan  1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.1-1
88- new upstream release
89- used cmake for building
90
91* Sun Jul 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5-1
92- new upstream release
93- removed lib*.la files
94
95* Mon Jun 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-0vl3
96- rebuilt with new toolchain
97
98* Thu Nov 30 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4-0vl2
99- add wchar.diff (patch0)
100  cf. http://mail.kde.org/pipermail/taglib-devel/2006-November/000532.html
101
102* Sat Jan 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 1.4-0vl1
103- source upgrade
104- add BuildRequires: zlib-devel
105- add taglib.pc to devel package
106
107* Thu Oct 21 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.3-0vl1
108- source upgrade
109
110* Wed Jun 16 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.1-0vl2
111- add all files under %%{_includedir}/taglib to devel package
112
113* Tue Jun 15 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.1-0vl1
114- Initial packaging
Note: See TracBrowser for help on using the repository browser.