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