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