]> git.pld-linux.org Git - packages/gource.git/blame_incremental - gource.spec
- updated URL
[packages/gource.git] / gource.spec
... / ...
CommitLineData
1Summary: Software version control visualization
2Summary(pl.UTF-8): Narzędzie wizualizujące kontrolę wersji
3Name: gource
4Version: 0.51
5Release: 1
6License: GPL v3+
7#Source0Download: https://github.com/acaudwell/Gource/releases
8Source0: https://github.com/acaudwell/Gource/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
9# Source0-md5: 957723684373e6d9493c4820e9c53399
10Patch0: gl-ac.patch
11URL: https://github.com/acaudwell/Gource
12Group: X11/Applications
13BuildRequires: GLM
14BuildRequires: OpenGL-GLU-devel
15BuildRequires: OpenGL-GLX-devel
16BuildRequires: SDL2-devel >= 2
17BuildRequires: SDL2_image-devel >= 2
18BuildRequires: autoconf >= 2.61
19BuildRequires: automake
20BuildRequires: boost-devel >= 1.46
21BuildRequires: freetype-devel >= 2.0.9
22BuildRequires: ftgl-devel >= 2.1.3
23BuildRequires: glew-devel
24BuildRequires: libjpeg-devel
25BuildRequires: libpng-devel >= 1.2
26BuildRequires: pcre-devel
27BuildRequires: pkgconfig
28BuildRequires: tinyxml-devel
29BuildRequires: xorg-lib-libX11-devel
30Requires: freetype >= 2.0.9
31Requires: fonts-TTF-freefont
32BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34%description
35Software projects are displayed by Gource as an animated tree with the
36root directory of the project at its centre. Directories appear as
37branches with files as leaves. Developers can be seen working on the
38tree at the times they contributed to the project.
39
40Currently there is first party support for Git and Mercurial, and
41third party (using additional steps) for CVS and SVN.
42
43%description -l pl.UTF-8
44Gource wyświetla projekty software'owe jako animowane drzewo z
45katalogiem głównym projektu w centrum. Podkatalogi przedstawione są w
46postaci gałęzi, a pliki to liście. Developerzy widoczni są przy pracy
47nad drzewem w czasie gdy rzeczywiście pracowali.
48
49Na chwilę obecną Gource natywnie wspiera repozytoria Git i Mercurial.
50Przy pomocy zewnętrznych narzędzi można również oglądać repozytoria
51CVS i SVN.
52
53%prep
54%setup -q
55%patch0 -p1
56
57%build
58%{__aclocal}
59%{__autoconf}
60%{__automake}
61%configure \
62 --with-tinyxml \
63 --enable-ttf-font-dir=%{_datadir}/fonts/TTF
64%{__make}
65
66%install
67rm -rf $RPM_BUILD_ROOT
68%{__make} install \
69 DESTDIR=$RPM_BUILD_ROOT
70
71%clean
72rm -rf $RPM_BUILD_ROOT
73
74%files
75%defattr(644,root,root,755)
76%doc ChangeLog README THANKS
77%attr(755,root,root) %{_bindir}/gource
78%dir %{_datadir}/%{name}
79%{_datadir}/%{name}/*.png
80%{_datadir}/%{name}/*.tga
81%{_datadir}/%{name}/*.style
82%{_datadir}/%{name}/shaders
83%{_mandir}/man1/gource.1*
This page took 0.030615 seconds and 4 git commands to generate.