]> git.pld-linux.org Git - packages/nano.git/blob - nano.spec
- BR: gettext-devel; new %%doc
[packages/nano.git] / nano.spec
1 Summary:        nano (Nano's ANOther editor)
2 Summary(pl):    nano - jeszcze jeden edytor
3 Name:           nano
4 Version:        1.1.10
5 Release:        1
6 License:        GPL
7 Group:          Applications/Editors
8 Source0:        http://www.nano-editor.org/dist/v1.1/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-ac_fixes.patch
10 Patch1:         %{name}-info.patch
11 URL:            http://www.nano-editor.org/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  gettext-devel
15 BuildRequires:  ncurses-devel >= 5.0
16 BuildRequires:  texinfo
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 nano (Nano's ANOther editor) is the editor formerly known as TIP (TIP
21 Isn't Pico). It aims to emulate Pico as closely as possible while also
22 offering a few enhancements.
23
24 %description -l pl
25 nano to edytor wcze¶niej znany jako TIP (Tip to nIe Pico). Jego celem
26 jest emulowanie Pico tak dobrze jk to mo¿liwe, jednocze¶nie oferuj±c
27 kilka rozszerzeñ.
28
29 %prep
30 %setup -q
31 %patch0 -p1
32 %patch1 -p1
33
34 %build
35 rm -f missing m4/*.m4
36 %{__gettextize}
37 %{__aclocal}
38 %{__autoconf}
39 %{__automake}
40 CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
41 %configure
42 %{__make}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46
47 %{__make} install DESTDIR=$RPM_BUILD_ROOT
48
49 %find_lang %{name}
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %post
55 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
56
57 %postun
58 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
59
60 %files -f %{name}.lang
61 %defattr(644,root,root,755)
62 %doc README ChangeLog AUTHORS NEWS TODO
63 %attr(755,root,root) %{_bindir}/nano
64 %{_mandir}/man1/*
65 %{_infodir}/*info*
This page took 0.076382 seconds and 4 git commands to generate.