* Makefile.am: * NEWS: * TODO: * autogen.sh: * configure.ac: * examples/ARcalibrate.py: * misc/Makefile.am: * misc/morituri-uninstalled: * morituri.spec.in: * morituri/Makefile.am: * morituri/common/Makefile.am: * morituri/common/logcommand.py: * morituri/extern/Makefile.am: * morituri/rip/Makefile.am: * morituri/rip/__init__.py: * morituri/rip/main.py: * morituri/test/Makefile: * morituri/test/Makefile.am: * configure.ac (added): * AUTHORS (added): * morituri.spec.in (added): * Makefile.am (added): * morituri/test/Makefile.am (added): * morituri/extern/Makefile.am (added): * morituri/common/logcommand.py (added): * morituri/common/Makefile.am (added): * morituri/Makefile.am (added): * morituri/rip (added): * morituri/rip/__init__.py (added): * morituri/rip/Makefile.am (added): * morituri/rip/main.py (added): * misc/Makefile.am (added): * misc/morituri-uninstalled (added): * autogen.sh (added): * NEWS (added): Start autotooling. Add a command-line application.
43 lines
975 B
RPMSpec
43 lines
975 B
RPMSpec
%define pyver %(%{__python} -c "import sys; print sys.version[:3]")
|
|
|
|
Name: morituri
|
|
Version: @PACKAGE_VERSION@
|
|
Release: @PACKAGE_VERSION_RELEASE@%{?dist}
|
|
Summary: CD ripper
|
|
Source: %{name}-%{version}.tar.bz2
|
|
URL: http://thomas.apestaart.org/thomas/trac/
|
|
License: GPL
|
|
Group: Applications/Archiving
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Morituri is a CD ripper.
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
%configure --sysconfdir=%{_sysconfdir}
|
|
|
|
%build
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README morituri.doap NEWS RELEASE ChangeLog
|
|
%{_bindir}/rip
|
|
%{_mandir}/man1/rip.1*
|
|
%{_libdir}/python*.*/site-packages/morituri
|
|
%{_sysconfdir}/bash_completion.d/morituri
|
|
|
|
%changelog
|
|
* Wed May 20 2009 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
- created package
|