]> git.pld-linux.org Git - packages/git-core.git/blame_incremental - git-core.spec
- initial PLD release
[packages/git-core.git] / git-core.spec
... / ...
CommitLineData
1# TODO: documentation
2Summary: The stupid content tracker
3Name: git-core
4Version: 0.99.8
5Release: 0.1
6Epoch: 0
7License: GPL v2
8Group: Development/Tools
9Source0: http://www.kernel.org/pub/software/scm/git/%{name}-%{version}.tar.bz2
10# Source0-md5: 0fb209de06352923b66ef1ca50e1b3b7
11BuildRequires: curl-devel
12BuildRequires: openssl-devel
13BuildRequires: perl-base
14BuildRequires: python
15BuildRequires: zlib-devel
16BuildRoot: %{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
30This is a stupid (but extremely fast) directory content manager. It
31doesn't do a whole lot, but what it 'does' do is track directory
32contents efficiently.
33
34%prep
35%setup -q
36%{__make} \
37 CFLAGS="%{rpmcflags}" \
38 LDFLAGS="%{rpmldflags}"
39
40%install
41rm -rf $RPM_BUILD_ROOT
42%{__make} install \
43 prefix=/usr \
44 DESTDIR=$RPM_BUILD_ROOT
45
46%clean
47rm -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.021128 seconds and 4 git commands to generate.