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