]> git.pld-linux.org Git - packages/mr.git/blob - mr.spec
5ee7626013fff006ea5286c37182742fd6e623df
[packages/mr.git] / mr.spec
1 Summary:        Command line tool for managing multiple repositories
2 Name:           mr
3 Version:        1.15
4 Release:        0.1
5 License:        GPL/GPL v2/GPL
6 Group:          Applications/Console
7 Source0:        ftp://ftp.debian.org/debian/pool/main/m/mr/%{name}_%{version}.tar.gz
8 # Source0-md5:  719ec056d7b9e2e5c9501d4f1ba19122
9 URL:            http://joeyh.name/code/mr/
10 Requires:       git-core
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 The mr command can checkout, update, or perform other actions on a set
15 of repositories as if they were one combined respository. It supports
16 any combination of subversion, git, cvs, mercurial, bzr, darcs, cvs,
17 vcsh, fossil and veracity repositories.
18
19 %prep
20 %setup -q -n %{name}
21
22 %build
23 %{__make}
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27
28 install -d $RPM_BUILD_ROOT%{_bindir}
29 install -d $RPM_BUILD_ROOT%{_mandir}/man1/
30 cp -p mr $RPM_BUILD_ROOT%{_bindir}
31 cp -p mr.1 $RPM_BUILD_ROOT%{_mandir}/man1/
32
33 %clean
34 rm -rf $RPM_BUILD_ROOT
35
36 %files
37 %defattr(644,root,root,755)
38 %doc README
39 %attr(755,root,root) %{_bindir}/%{name}
40 %{_mandir}/man1/%{name}.*
This page took 0.047444 seconds and 2 git commands to generate.