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