]> git.pld-linux.org Git - packages/monotone.git/blob - monotone.spec
- builds
[packages/monotone.git] / monotone.spec
1 Summary:        A free distributed version control system
2 Name:           monotone
3 Version:        0.13
4 Release:        1
5 License:        GPL v2
6 Group:          Development/Version Control
7 Source0:        http://www.venge.net/monotone/%{name}-%{version}.tar.gz
8 # Source0-md5:  19a9cc07058aba5ab41e0d3264d2a601
9 URL:            http://www.venge.net/monotone/
10 BuildRequires:  boost-devel >= 1.31.0-2
11 BuildRequires:  boost-test-devel
12 BuildRequires:  boost-filesystem-devel
13 BuildRequires:  boost-date_time-devel
14 BuildRequires:  boost-regex-devel
15 BuildRequires:  boost-ref-devel
16 BuildRequires:  libidn-devel
17 BuildRequires:  lua-devel
18 BuildRequires:  sqlite-devel
19 BuildRequires:  popt-devel
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 monotone is a free distributed version control system. it provides a
24 simple, single-file transactional version store, with fully
25 disconnected operation and an efficient peer-to-peer synchronization
26 protocol. it understands history-sensitive merging, lightweight
27 branches, integrated code review and 3rd party testing. it uses
28 cryptographic version naming and client-side RSA certificates. it has
29 good internationalization support, has no external dependencies, runs
30 on linux, solaris, OSX, and windows, and is licensed under the GNU
31 GPL.
32
33 %prep
34 %setup -q
35
36 %build
37 %configure
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %post
50 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
51
52 %postun
53 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
54
55 %files
56 %defattr(644,root,root,755)
57 %doc AUTHORS NEWS ChangeLog
58 %attr(755,root,root) %{_bindir}/*
59 %{_infodir}/monotone*
60 %{_mandir}/man?/*
This page took 0.064904 seconds and 4 git commands to generate.