1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#
# spec file for package RipIT (Version 3.6.0)
#
Name: ripit
Summary: Perl script to create .faac .flac .ogg or .mp3 Files from an audio CD
Version: 3.6.0
Release: 0
License: GPL
Group: Productivity/Multimedia/CD/Grabbers
Source: %{name}-%{version}.tar.gz
Packager: Felix Suwald
Url: http://www.suwald.com/ripit/ripit.html
Requires: cdparanoia vorbis-tools perl perl-CDDB_get
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArchitectures: noarch
Distribution: SuSE 10.2
%description
This Perl script makes it a lot easier to create "mp3" files from an
audio CD. RipIT supports Flac, Lame, Oggenc and Faac. It tries to find
the artist and song titles with the CDDB_get.pm. One can submit and edit
CDDB entries @ freedb.org. Hidden tracks and ghost songs are detected
and splitted into chunks of sound, a toc (cue) file permits to burn the
wavs with text and no gaps in DAO mode.
Authors:
--------
Felix Suwald <ripit[_at_]suwald[_dot_]com>
Mads Martin Joergenson <mmj@mmj.dk>
Simon Quinn
%prep
%setup
%build
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/etc/%{name}
install -m 644 config %{buildroot}/etc/%{name}
mkdir -p %{buildroot}%{_mandir}/man1
install -m 644 ripit.1 %{buildroot}%{_mandir}/man1
mkdir -p %{buildroot}%{_bindir}
install -m 755 %{name}.pl %{buildroot}%{_bindir}/%{name}
#ln -s %{name}.pl %{buildroot}/%{_bindir}/%{name}
%clean
rm -rf %{buildroot}
# Be sure to list all files needed or delete them before they are
# checked, else you get the "Installed (but unpackaged) file(s) found"
# error message!
%files
%defattr(-,root,root)
%{_bindir}/%{name}
#%{_bindir}/%{name}.pl
%{_mandir}/man1/%{name}.1.gz
/etc/%{name}/config
%doc README HISTORY LICENSE Makefile ripit.spec
|