]> git.pld-linux.org Git - packages/gclient.git/blame - gclient.spec
- initial
[packages/gclient.git] / gclient.spec
CommitLineData
64cee83c
AM
1%define snap 20090918
2Summary: Wrapper script for checking out and updating source code from multiple SCM repository locations
3Name: gclient
4Version: 0.1
5Release: 0.%{snap}.1
6License: Apache
7Group: Applications/System
8# svn export http://gclient.googlecode.com/svn/trunk/ gclient
9Source0: %{name}-%{snap}.tar.bz2
10# Source0-md5: a06187007c1209d43d88fe5ade8d768a
11URL: http://code.google.com/p/gclient/
12Requires: python
13Requires: python-modules
14Requires: python-pymox
15BuildArch: noarch
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19The gclient script manages checkouts and updates for a set of client
20modules in various SCM repository locations.
21
22The gclient script currently handles basic management of one or more
23Subversion modules, along with their dependent modules. Module sources
24may exist in separate, different Subversion repositories. Addition of
25other SCM systems is planned.
26
27%prep
28%setup -q -n %{name}
29
30%build
31
32%install
33rm -rf $RPM_BUILD_ROOT
34install -d $RPM_BUILD_ROOT%{_bindir}
35
36install gclient.py $RPM_BUILD_ROOT%{_bindir}/gclient
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41%files
42%defattr(644,root,root,755)
43%doc *.txt
44%attr(755,root,root) %{_bindir}/gclient
This page took 0.058802 seconds and 4 git commands to generate.