]> git.pld-linux.org Git - packages/bibcursed.git/blame - bibcursed.spec
- builds, works... STBR
[packages/bibcursed.git] / bibcursed.spec
CommitLineData
d313313a
PG
1# TODO:
2# - fix makefile to build it TheRightWay(TM)
3Summary: Maintain BibTeX files
4Name: bibcursed
5Version: 2.0.0
6Release: 1
7License: GPL v2
8Group: Daemons
9Source0: http://dl.sourceforge.net/bibcursed/%{name}_%{version}.tar.gz
10# Source0-md5: 2579457724f17c23cdac408e4271f2d9
11URL: http://sourceforge.net/projects/bibcursed/
12BuildRequires: ncurses-devel
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16Bibcursed is a simple curses-based editor for BibTeX bibliography
17files, especially useful for those who have to maintain a large number
18of references for a major piece of documentation, like a PhD thesis.
19It performs everyday functions such as adding, removing and viewing
20reference entries. Intelligent prompting for fields is used when
21adding entries so that authors do not have to rely on memory for
22knowing which fields can and cannot be used for different entry types.
23
24%prep
25%setup -q -n %{name}
26
27%build
28%{__cc} %{rpmcflags} -I%{_includedir}/ncurses -lncurses -o %{name} bibcursed.c
29
30%install
31rm -rf $RPM_BUILD_ROOT
32install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
33
34install %{name} $RPM_BUILD_ROOT%{_bindir}
35install %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
36
37%clean
38rm -rf $RPM_BUILD_ROOT
39
40%files
41%defattr(644,root,root,755)
42%doc README INSTALL
43%attr(755,root,root) %{_bindir}/*
44%{_mandir}/man1/*.1*
This page took 0.058562 seconds and 4 git commands to generate.