]> git.pld-linux.org Git - packages/git-core.git/blob - git-core.spec
- initial PLD release
[packages/git-core.git] / git-core.spec
1 # TODO: documentation
2 Summary:        The stupid content tracker
3 Name:           git-core
4 Version:        0.99.8
5 Release:        0.1
6 Epoch:          0
7 License:        GPL v2
8 Group:          Development/Tools
9 Source0:        http://www.kernel.org/pub/software/scm/git/%{name}-%{version}.tar.bz2
10 # Source0-md5:  0fb209de06352923b66ef1ca50e1b3b7
11 BuildRequires:  curl-devel
12 BuildRequires:  openssl-devel
13 BuildRequires:  perl-base
14 BuildRequires:  python
15 BuildRequires:  zlib-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 "git" can mean anything, depending on your mood.
20
21  - random three-letter combination that is pronounceable, and not
22    actually used by any common UNIX command.  The fact that it is a
23    mispronunciation of "get" may or may not be relevant.
24  - stupid. contemptible and despicable. simple. Take your pick from the
25    dictionary of slang.
26  - "global information tracker": you're in a good mood, and it actually
27    works for you. Angels sing, and a light suddenly fills the room.
28  - "goddamn idiotic truckload of sh*t": when it breaks
29
30 This is a stupid (but extremely fast) directory content manager.  It
31 doesn't do a whole lot, but what it 'does' do is track directory
32 contents efficiently.
33
34 %prep
35 %setup -q
36 %{__make} \
37         CFLAGS="%{rpmcflags}" \
38         LDFLAGS="%{rpmldflags}"
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42 %{__make} install \
43         prefix=/usr \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc README
52 %attr(755,root,root) %{_bindir}/*
53 %dir %{_datadir}/%{name}
54 %{_datadir}/%{name}/*
This page took 0.072389 seconds and 4 git commands to generate.