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