]> git.pld-linux.org Git - packages/git-core.git/blob - git-core.spec
- build documentation (BR: asciidoc, xmlto)
[packages/git-core.git] / git-core.spec
1 # TODO:
2 # - documentation
3 Summary:        The stupid content tracker
4 Summary(pl):    Prymitywne narzêdzie do ¶ledzenia tre¶ci
5 Name:           git-core
6 Version:        1.0.7
7 Release:        2
8 License:        GPL v2
9 Group:          Development/Tools
10 Source0:        http://www.kernel.org/pub/software/scm/git/git-%{version}.tar.bz2
11 # Source0-md5:  4f8292542771b2303241b0bfea7101ed
12 URL:            http://git.or.cz/
13 BuildRequires:  asciidoc
14 BuildRequires:  curl-devel
15 BuildRequires:  openssl-devel
16 BuildRequires:  perl-base
17 BuildRequires:  python
18 BuildRequires:  xmlto
19 BuildRequires:  zlib-devel
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 "git" can mean anything, depending on your mood.
24
25  - random three-letter combination that is pronounceable, and not
26    actually used by any common UNIX command. The fact that it is a
27    mispronunciation of "get" may or may not be relevant.
28  - stupid. contemptible and despicable. simple. Take your pick from the
29    dictionary of slang.
30  - "global information tracker": you're in a good mood, and it actually
31    works for you. Angels sing, and a light suddenly fills the room.
32  - "goddamn idiotic truckload of sh*t": when it breaks
33
34 This is a stupid (but extremely fast) directory content manager. It
35 doesn't do a whole lot, but what it 'does' do is track directory
36 contents efficiently.
37
38 %description -l pl
39 "git" mo¿e oznaczaæ cokolwiek, w zale¿no¶ci od nastroju.
40
41 - losow± kombinacjê trzech liter, która jest wymawialna i w³a¶ciwie
42   nie u¿ywana przez ¿adne popularne polecenie uniksowe. Fakt, ¿e jest
43   to b³êdna pisownia s³owa "get" mo¿e mieæ lub nie mieæ znaczenia.
44 - g³upi, pogardliwy, prosty. Mo¿na wybraæ ze s³ownika slangu.
45 - "global information tracker" (narzêdzie do globalnego ¶ledzenia
46   informacji) - je¶li jeste¶my w dobrym nastroju i git akurat dzia³a.
47   Anio³y ¶piewaj±, a ¶wiat³o niespodziewanie wype³nia pokój.
48 - "goddamn idiotic truckload of sh*t" (przeklêty idiotyczny ³adunek
49   g*) - kiedy siê zepsuje.
50
51 Jest to prymitywny (ale bardzo szybki) zarz±dca tre¶ci s³ownikowej.
52 Nie robi wiele, ale to, co "robi", to wydajne ¶ledzenie zawarto¶ci
53 katalogu.
54
55 %prep
56 %setup -q -n git-%{version}
57
58 %build
59 %{__make} \
60         prefix=%{_prefix} \
61         CC="%{__cc}" \
62         CFLAGS="%{rpmcflags}" \
63         LDFLAGS="%{rpmldflags}"
64
65 %{__make} -C Documentation
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         prefix=%{_prefix} \
72         DESTDIR=$RPM_BUILD_ROOT
73
74 %{__make} -C Documentation install \
75         prefix=%{_prefix} \
76         mandir=%{_mandir} \
77         DESTDIR=$RPM_BUILD_ROOT
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %files
83 %defattr(644,root,root,755)
84 %doc README Documentation/*.html Documentation/howto Documentation/technical
85 %attr(755,root,root) %{_bindir}/*
86 %{_mandir}/man*/*
87 %dir %{_datadir}/%{name}
88 %{_datadir}/%{name}/*
This page took 0.035275 seconds and 4 git commands to generate.