Blob Blame History Raw
Summary:        A command line id3v2 tag editor
Name:           id3v2
Version:        0.1.9
Release:        0.fdr.2.rh90
Epoch:          0
Group:          Applications/Multimedia
License:        GPL
URL:            http://id3v2.sourceforge.net/
Source0:        http://download.sourceforge.net/id3v2/id3v2-0.1.9.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires:  id3lib-devel

%description
In case you didn't know id3 tags can be found on mp3 files, they can
store infomation about what band recorded the song, the song name,
etc.  This tool was written because id3v1 are seriously deficient in
what kind of info can be in them and the length of info that can be in
them.  id3v2 tags are much better but there isn't a tool to edit them
in Linux.  This is a tool to fill that space.

# -----------------------------------------------------------------------------

%prep
%setup -q

# -----------------------------------------------------------------------------

%build
make %{?_smp_mflags} CXXFLAGS="%{optflags}" PREFIX="%{_prefix}"

# -----------------------------------------------------------------------------

%install
rm -rf %{buildroot}
mkdir -p %{buildroot}{%{_bindir},%{_mandir}/man1}
cp -p id3v2 %{buildroot}%{_bindir}
cp -p id3v2.1 %{buildroot}%{_mandir}/man1

# -----------------------------------------------------------------------------

%clean
rm -rf %{buildroot}

# -----------------------------------------------------------------------------

%files
%defattr(0644,root,root,0755)
%doc COPYING README
%attr(0755,root,root) %{_bindir}/*
%{_mandir}/*/*

# -----------------------------------------------------------------------------

%changelog
* Wed Oct 29 2003 Ville Skytta <ville.skytta at iki.fi> - 0:0.1.9-0.fdr.2
- Rebuild.

* Sun Apr 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.1.9-0.fdr.1
- First release.