]> git.pld-linux.org Git - packages/ArX.git/blame - ArX.spec
- added
[packages/ArX.git] / ArX.spec
CommitLineData
d754aadc 1Summary: ArX version control system
2Name: ArX
3Version: 1.0pre8
4Release: 1
5URL: http://arx.fifthvision.net/
6Source0: http://superbeast.ucsd.edu/~landry/%{name}/%{name}-%{version}.tar.gz
7# Source0-md5: e807b140d00882c57de8cfa322300e8c
8License: GPL
9Group: Development/Tools
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11Prereq: fileutils gawk sed sh-utils
12
13%description
14ArX is a source control management system with distributed
15repositories, easy branching, and rich merge tools.
16
17%package devel
18Summary: ArX headers and static libs
19Group: Development/Libraries
20
21%description devel
22ArX headers and static libs
23
24%prep
25%setup -q
26
27%build
28mkdir =build
29cd =build
30../src/configure --prefix=/usr
31%{__make}
32
33%install
34rm -rf $RPM_BUILD_ROOT
35cd =build
36install -d $RPM_BUILD_ROOT%{_prefix}
37%{__make} prefix=$RPM_BUILD_ROOT%{_prefix} real-prefix=%{_prefix} install
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
44%attr(755,root,root) %{_bindir}/*
45%dir /usr/libexec/arch/
46%dir /usr/libexec/arch/*
47%attr(755,root,root) /usr/libexec/arch/*/*
48
49%files devel
50%defattr(644,root,root,755)
51%{_includedir}/*
52%{_libdir}/*.a
This page took 0.065343 seconds and 4 git commands to generate.