]> git.pld-linux.org Git - SPECS.git/blob - svn2cvs.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / svn2cvs.spec
1 Summary:        Save Subversion commits to CVS repository
2 Name:           svn2cvs
3 Version:        0.1
4 Release:        0.1
5 License:        GPL
6 Group:          Development/Version Control
7 Source0:        %{name}.tbz2
8 # Source0-md5:  960f25ea89eb88fbbda7e404a6d0b1ae
9 URL:            http://svn2cvs.tigris.org/
10 BuildRequires:  perl-tools-pod
11 BuildArch:      noarch
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 This script will allows you to commit changes made to Subversion
16 repository to (read-only) CVS repository manually or from Subversion's
17 post-commit hook.
18
19 %prep
20 %setup -qn %{name}
21
22 %build
23 pod2man src/svn2cvs.pl > svn2cvs.1
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
28 install -p src/svn2cvs.pl $RPM_BUILD_ROOT%{_bindir}/%{name}
29 cp -p svn2cvs.1 $RPM_BUILD_ROOT%{_mandir}/man1
30
31 %clean
32 rm -rf $RPM_BUILD_ROOT
33
34 %files
35 %defattr(644,root,root,755)
36 %attr(755,root,root) %{_bindir}/%{name}
37 %{_mandir}/man1/svn2cvs.1*
This page took 0.187062 seconds and 3 git commands to generate.