]> git.pld-linux.org Git - packages/ArX.git/blob - ArX.spec
- added
[packages/ArX.git] / ArX.spec
1 Summary:        ArX version control system
2 Name:           ArX
3 Version:        1.0pre8
4 Release:        1
5 URL:            http://arx.fifthvision.net/
6 Source0:        http://superbeast.ucsd.edu/~landry/%{name}/%{name}-%{version}.tar.gz
7 # Source0-md5:  e807b140d00882c57de8cfa322300e8c
8 License:        GPL
9 Group:          Development/Tools
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11 Prereq:         fileutils gawk sed sh-utils
12
13 %description
14 ArX is a source control management system with distributed
15 repositories, easy branching, and rich merge tools.
16
17 %package devel
18 Summary: ArX headers and static libs
19 Group: Development/Libraries
20
21 %description devel
22 ArX headers and static libs
23
24 %prep
25 %setup -q
26
27 %build
28 mkdir =build
29 cd =build
30 ../src/configure --prefix=/usr
31 %{__make}
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35 cd =build
36 install -d $RPM_BUILD_ROOT%{_prefix}
37 %{__make} prefix=$RPM_BUILD_ROOT%{_prefix} real-prefix=%{_prefix} install
38
39 %clean
40 rm -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.033597 seconds and 4 git commands to generate.