]> git.pld-linux.org Git - packages/bibcursed.git/blame_incremental - bibcursed.spec
- 2.0.1
[packages/bibcursed.git] / bibcursed.spec
... / ...
CommitLineData
1# TODO:
2# - fix makefile to build it TheRightWay(TM)
3Summary: Maintain BibTeX files
4Summary(pl.UTF-8): Zarządzanie plikami BibTeXa
5Name: bibcursed
6Version: 2.0.1
7Release: 1
8License: GPL v2
9Group: Daemons
10Source0: http://dl.sourceforge.net/bibcursed/%{name}_%{version}.tgz
11# Source0-md5: 7645b7b7e3ff558d673a1ed6e2ebe99e
12URL: http://sourceforge.net/projects/bibcursed/
13BuildRequires: ncurses-devel
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17Bibcursed is a simple curses-based editor for BibTeX bibliography
18files, especially useful for those who have to maintain a large number
19of references for a major piece of documentation, like a PhD thesis.
20It performs everyday functions such as adding, removing and viewing
21reference entries. Intelligent prompting for fields is used when
22adding entries so that authors do not have to rely on memory for
23knowing which fields can and cannot be used for different entry types.
24
25%description -l pl.UTF-8
26Bibcursed to prosty oparty o curses edytor do plików bibliografii
27BibTeXa, przydatny szczególnie dla tych, którzy muszą utrzymywać dużą
28liczbę odniesień w większej części dokumentacji, jak na przykład
29pracach dyplomowych. Program wykonuje codzienne funkcje, takie jak
30dodawanie, usuwanie i przeglądanie wpisów z odniesieniami. Przy
31dodawaniu wpisów używane są inteligentne pytania dla pól, przez co
32autorzy nie muszą polegać na swojej pamięci, żeby wiedzieć, które pola
33mogą, a które nie mogą być użyte dla różnych rodzajów wpisów.
34
35%prep
36%setup -q -n %{name}
37
38%build
39%{__cc} %{rpmcflags} -I/usr/include/ncurses -lncurses -o %{name} bibcursed.c
40
41%install
42rm -rf $RPM_BUILD_ROOT
43install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
44
45install %{name} $RPM_BUILD_ROOT%{_bindir}
46install %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51%files
52%defattr(644,root,root,755)
53%doc README INSTALL
54%attr(755,root,root) %{_bindir}/*
55%{_mandir}/man1/*.1*
This page took 0.076951 seconds and 4 git commands to generate.