]> git.pld-linux.org Git - packages/ArX.git/blob - ArX.spec
- udpated to 2.2.4; typo
[packages/ArX.git] / ArX.spec
1 Summary:        ArX version control system
2 Summary(pl.UTF-8):      System kontroli wersji ArX
3 Name:           ArX
4 Version:        2.2.4
5 Release:        0.1
6 License:        GPL
7 Group:          Development/Version Control
8 Source0:        http://savannah.nongnu.org/download/arx/%{name}-%{version}.tar.gz
9 # Source0-md5:  75ef7a4b16e7cd3ebb9724298f2751f6
10 URL:            http://savannah.nongnu.org/projects/arx/
11 Requires:       fileutils
12 Requires:       gawk
13 Requires:       sed
14 Requires:       sh-utils
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 ArX is a source control management system with distributed
19 repositories, easy branching, and rich merge tools.
20
21 %description -l pl.UTF-8
22 ArX jest systemem zarządzania źródłami w rozproszonych repozytoriach.
23 Umożliwia łatwe tworzenie rozgałęzień i zawiera narzędzia uzgadniające
24 o bogatych możliwościach.
25
26 %package devel
27 Summary:        ArX headers and static libs
28 Summary(pl.UTF-8):      Pliki nagłówkowe i biblioteki statyczne ArX
29 Group:          Development/Libraries
30
31 %description devel
32 This package contains ArX headers and static libs.
33
34 %description devel -l pl.UTF-8
35 Ten pakiet zawiera pliki nagłówkowe i biblioteki statyczne ArX.
36
37 %prep
38 %setup -q
39
40 %build
41 %configure \
42         --prefix=$RPM_BUILD_ROOT%{_prefix} \
43         --bindir=$RPM_BUILD_ROOT%{_bindir} \
44         --mandir=$RPM_BUILD_ROOT%{_mandir}
45
46 %{__make}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT%{_prefix}
51
52 %{__make} install
53 #bindir=$RPM_BUILD_ROOT%{_bindir} prefix=$RPM_BUILD_ROOT%{_prefix} mandir=$RPM_BUILD_ROOT%{_mandir} install
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %{_docdir}/arx
61 %attr(755,root,root) %{_bindir}/*
62 %{_mandir}/man1/arx.1*
63 #%dir %{_prefix}/libexec/arch/
64 #%dir %{_prefix}/libexec/arch/*
65 #%attr(755,root,root) %{_prefix}/libexec/arch/*/*
66
67 %files devel
68 %defattr(644,root,root,755)
69 #%{_includedir}/*
70 #%{_libdir}/*.a
This page took 0.063974 seconds and 3 git commands to generate.