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