]> git.pld-linux.org Git - SPECS.git/blob - rinse.spec
SPECS updated Mon 29 Apr 22:05:02 CEST 2024
[SPECS.git] / rinse.spec
1 Summary:        A utility designed to install a minimal RPM-based distribution within a local directory
2 Name:           rinse
3 Version:        3.0.2
4 Release:        1
5 License:        GPL, Artistic
6 Group:          Development/Tools
7 Source0:        http://collab-maint.alioth.debian.org/rinse/download/%{name}_%{version}.tar.gz
8 # Source0-md5:  51c7875ae363ed35963e3b9fad344dd1
9 URL:            http://collab-maint.alioth.debian.org/rinse/
10 BuildRequires:  rpm-perlprov >= 4.1-13
11 BuildArch:      noarch
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %define         _libexecdir     %{_prefix}/lib
15
16 %description
17 The rinse utility is designed to install a minimal RPM-based
18 distribution of GNU/Linux within a local directory. The purpose and
19 usage are analogous to the 'debootstrap' utility familiar to users of
20 Debian GNU/Linux.
21
22 %prep
23 %setup -qc
24 mv %{name}/* .
25
26 %build
27 %{__make}
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31 %{__make} install \
32         DESTDIR=$RPM_BUILD_ROOT
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %doc README
40 %dir %{_sysconfdir}/%{name}
41 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/%{name}.conf
42 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/*.packages
43 %attr(755,root,root) %{_sbindir}/rinse
44 %{_mandir}/man8/rinse.8*
45 %defattr(755,root,root,755)
46 %{_libexecdir}/%{name}
47
48 # bash-completion
49 /etc/bash_completion.d/rinse
This page took 1.400419 seconds and 3 git commands to generate.