]> git.pld-linux.org Git - packages/bibgrep.git/blame - bibgrep.spec
- ocaml.... bleee..... who wants to finish it?
[packages/bibgrep.git] / bibgrep.spec
CommitLineData
c0ea5256
PG
1# TODO:
2# - fix against home_etc
3# - simply... finish it..
4Summary: Indexes and searches BibTex files using Google-like queries
5Name: bibgrep
6Version: 0.51
7Release: 0.1
8License: ??
9Group: Applications
10Source0: http://dl.sourceforge.net/bibgrep/%{name}-src-%{version}.tgz
11# Source0-md5: e13320753a513a7c8ce91836375c3249
12URL: http://www.sourceforge.net/projects/bibgrep/
13#BuildRequires: btparse
14BuildRequires: ocaml
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Bibgrep indexes and efficiently searches BibTex files. Its usage is
19similar to the command grep and the queries use a Google-like syntax.
20Bibgrep will create an index for each BibTex file it touches, and keep
21the result within "~/.bibgrep.idx" (by defaults). It watches the
22modification date and the size of the original BibTex file, and will
23update (and delete) its index as needed.
24
25%prep
26%setup -q -T -c -a0
27
28%build
29%{__make}
30
31%install
32rm -rf $RPM_BUILD_ROOT
33install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man8}
34
35install bibgrep $RPM_BUILD_ROOT%{_bindir}
36install bibgrep.8 $RPM_BUILD_ROOT%{_mandir}/man8
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41%files
42%defattr(644,root,root,755)
43%doc README
44%attr(755,root,root) %{_bindir}/*
45%{_mandir}/man?/*
This page took 0.351545 seconds and 4 git commands to generate.