]> git.pld-linux.org Git - packages/tig.git/blob - tig.spec
- updated to 0.5
[packages/tig.git] / tig.spec
1 Summary:        Text-mode interface for git-core
2 Summary(pl):    Tekstowy interfejs do git-core
3 Name:           tig
4 Version:        0.5
5 Release:        1
6 License:        GPL v2
7 Group:          Development/Tools
8 Source0:        http://jonas.nitro.dk/tig/releases/%{name}-%{version}.tar.gz
9 # Source0-md5:  fab4a728d13b8eb0643a1f5c26c0b8c9
10 Patch0:         %{name}-ncurses.patch
11 URL:            http://jonas.nitro.dk/tig/
12 BuildRequires:  asciidoc
13 BuildRequires:  ncurses-devel
14 Requires:       git-core
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Tig is a git-core repository browser that additionally can act as a
19 pager for output from various git commands.
20
21 When browsing repositories, it uses the underlying git commands to
22 present the user with various views, such as summarized revision log
23 and showing the commit with the log message, diffstat, and the diff.
24
25 Using it as a pager, it will display input from stdin and colorize it.
26
27 %description -l pl
28 Tig jest przegl±dark± repozytoriów git-core'a. Dodatkowo mo¿e dzia³aæ
29 jako pager dla ró¿nych komend gita.
30
31 Podczas przegl±dania repozytoriów u¿ywa poleceñ gita i pokazuje log,
32 statystyki diffa i ró¿nice miêdzy plikami.
33
34 U¿ywany jako pager bêdzie kolorowa³ to co otrzyma ze standardowego
35 wej¶cia.
36
37 %prep
38 %setup -q
39 %patch0 -p1
40
41 %build
42 %{__make} CC="%{__cc}" CFLAGS="%{rpmcflags} %{rpmldflags}"
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46
47 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man{1,5}}
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT \
50         prefix=%{_prefix}
51
52 install tig.1 $RPM_BUILD_ROOT%{_mandir}/man1
53 install tigrc.5 $RPM_BUILD_ROOT%{_mandir}/man5
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc TODO *.html
61 %attr(755,root,root) %{_bindir}/*
62 %{_mandir}/man*/*
This page took 0.133686 seconds and 3 git commands to generate.