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