]> git.pld-linux.org Git - packages/fossil.git/blame - fossil.spec
- new
[packages/fossil.git] / fossil.spec
CommitLineData
3f1908b8
JB
1Summary: Simple, high-reliability, distributed software configuration management
2Summary(pl.UTF-8): Proste, wiarygodne, rozproszone zarządzanie konfiguracją oprogramowania
3Name: fossil
4Version: 1.20
5Release: 1
6License: BSD
7Group: Development/Version Control
8# see URL below for mapping between Version and date
9#Source0Download: http://www.fossil-scm.org/download.html
10Source0: http://www.fossil-scm.org/download/%{name}-src-20111021125253.tar.gz
11# Source0-md5: d3bd7d3bf60b523578f37315cd8a8f12
12URL: http://www.fossil-scm.org/
13BuildRequires: openssl-devel
14BuildRequires: readline-devel
15BuildRequires: tcl >= 8.5
16BuildRequires: zlib-devel
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20Fossil is simple, high-reliability, distributed software configuration
21management. In comparison to other distributed version control systems
22it has the following features:
23
241. Bug Tracking And Wiki - In addition to doing distributed version
25control like Git and Mercurial, Fossil also supports distributed bug
26tracking, distributed wiki, and a distributed blog mechanism all in a
27single integrated package.
28
292. Web Interface - Fossil has a built-in and easy-to-use web interface
30that simplifies project tracking and promotes situational awareness.
31Simply type "fossil ui" from within any check-out and Fossil
32automatically opens your web browser in a page that gives detailed
33graphical history and status information on that project.
34
35%description -l pl.UTF-8
36Fossil to proste, wiarygodne, rozproszone zarządzanie konfiguracją
37oprogramowania. W porównaniu z innymi rozproszonymi systemami kontroli
38wersji ma następujące możliwości:
39
401. Śledzenie błędów i Wiki - poza rozproszoną kontrolą wersji, jak w
41systemach Git czy Mercurial, Fossil obsługuje rozproszone mechanizmy
42śledzenia błędów, wiki oraz bloga - wszystko w pojedynczym,
43zintegrowanym pakiecie.
44
452. Interfejs WWW - Fossil ma wbudowany i łatwy w użyciu interfejs WWW,
46upraszczający śledzenie projektu i promujący świadomość sytuacji.
47Wystarczy napisać "fossil ui" z poziomu dowolnego wyciągniętego stanu
48repozytorium, a Fossil automatycznie otworzy przeglądarkę WWW na
49stronie podającej szczegółową historię oraz informacje o stanie
50projektu w postaci graficznej.
51
52%prep
53%setup -q -n %{name}-src-20111021125253
54
55%build
56# some tcl-based strangeness, not autoconf configure
57CC="%{__cc}" \
58CFLAGS="%{rpmcflags}" \
59CPPFLAGS="%{rpmcppflags}" \
60./configure
61%{__make}
62
63%install
64rm -rf $RPM_BUILD_ROOT
65install -d $RPM_BUILD_ROOT%{_bindir}
66
67%{__make} install \
68 INSTALLDIR=$RPM_BUILD_ROOT%{_bindir}
69
70%clean
71rm -rf $RPM_BUILD_ROOT
72
73%files
74%defattr(644,root,root,755)
75%doc COPYRIGHT-BSD2.txt
76%attr(755,root,root) %{_bindir}/fossil
This page took 0.124601 seconds and 4 git commands to generate.