]> git.pld-linux.org Git - packages/git-core.git/blob - git-core.spec
- up to 1.4.2.4
[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.2.4
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:  44ecfbf9817f36bd5fdba172b9b58d60
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 to
42   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 %package devel
55 Summary:        Header files for git-core
56 Summary(pl):    Pliki nag³ówkowe dla git-core
57 Group:          Development/Libraries
58
59 %description devel
60 Header files for git-core.
61
62 %description devel
63 Pliki nag³ówkowe dla git-core.
64
65 %prep
66 %setup -q -n git-%{version}
67
68 %build
69 %{__make} \
70         prefix=%{_prefix} \
71         CC="%{__cc}" \
72         CFLAGS="%{rpmcflags}" \
73         LDFLAGS="%{rpmldflags}"
74
75 %{__make} -C Documentation
76
77 %install
78 rm -rf $RPM_BUILD_ROOT
79 install -d $RPM_BUILD_ROOT%{_includedir}/%{name}/xdiff
80
81 %{__make} install \
82         prefix=%{_prefix} \
83         CFLAGS="%{rpmcflags}" \
84         DESTDIR=$RPM_BUILD_ROOT
85
86 %{__make} -C Documentation install \
87         prefix=%{_prefix} \
88         mandir=%{_mandir} \
89         DESTDIR=$RPM_BUILD_ROOT
90
91 install *.h $RPM_BUILD_ROOT%{_includedir}/%{name}
92 install xdiff/*.h $RPM_BUILD_ROOT%{_includedir}/%{name}/xdiff
93
94 %clean
95 rm -rf $RPM_BUILD_ROOT
96
97 %files
98 %defattr(644,root,root,755)
99 %doc README Documentation/*.html Documentation/howto Documentation/technical
100 %attr(755,root,root) %{_bindir}/*
101 %{_mandir}/man*/*
102 %dir %{_datadir}/%{name}
103 %{_datadir}/%{name}/*
104
105 %files devel
106 %defattr(644,root,root,755)
107 %{_includedir}/*
This page took 0.035924 seconds and 4 git commands to generate.