SHA256
1
0
forked from pool/nano
nano/nano.spec

104 lines
3.3 KiB
RPMSpec
Raw Normal View History

#
# spec file for package nano
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: nano
Version: 2.3.6
Release: 0
Summary: Pico Editor Clone with Enhancements
License: GPL-3.0+
Group: Productivity/Editors/Other
Url: http://www.nano-editor.org/
Source0: http://www.nano-editor.org/dist/v2.3/%{name}-%{version}.tar.gz
BuildRequires: file-devel
%if 0%{?suse_version} > 1230
BuildRequires: groff-full
%else
BuildRequires: groff
%endif
%if 0%{?suse_version} > 1140
BuildRequires: makeinfo
%else
BuildRequires: texinfo
%endif
BuildRequires: ncurses-devel
BuildRequires: pkg-config
Requires(post): info
Requires(preun): info
Recommends: %{name}-lang = %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
GNU nano is a small and friendly text editor. It aims to emulate the
Pico text editor while also offering a few enhancements.
%lang_package
%prep
%setup -q
# Remove build time references so build-compare can do its work
FAKE_BUILDTIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%H:%%M')
FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
sed -i "s/__TIME__/\"$FAKE_BUILDTIME\"/" src/nano.c
sed -i "s/__DATE__/\"$FAKE_BUILDDATE\"/" src/nano.c
%build
%configure --disable-rpath --enable-utf8
make %{?_smp_mflags}
%install
%makeinstall
# Remove doc files that should be in defaultdocdir
rm -rf %{buildroot}%{_datadir}/nano/man-html/
rm -rf %{buildroot}%{_datadir}/doc/nano/
# Manually install the doc files in order to easily split them between the main and lang package
install -dpm 0755 %{buildroot}%{_defaultdocdir}/nano
install -pm 0644 AUTHORS COPYING COPYING.DOC ChangeLog ChangeLog.pre-2.1 NEWS README THANKS TODO UPGRADE %{buildroot}%{_defaultdocdir}/nano/
install -pm 0644 doc/faq.html doc/nanorc.sample %{buildroot}%{_defaultdocdir}/nano/
install -dpm 0755 %{buildroot}%{_defaultdocdir}/nano/man-html/fr
install -pm 0644 doc/man/*.html %{buildroot}%{_defaultdocdir}/nano/man-html/
install -pm 0644 doc/man/fr/*.html %{buildroot}%{_defaultdocdir}/nano/man-html/fr/
%find_lang %{name} --with-man --all-name
%post
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
%preun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
%files
%defattr(-,root,root,-)
%doc %{_defaultdocdir}/nano/
%exclude %{_defaultdocdir}/nano/man-html/fr/
%{_bindir}/nano
%{_bindir}/rnano
%doc %{_infodir}/nano.info%{ext_info}
%doc %{_mandir}/man1/nano.1%{ext_man}
%doc %{_mandir}/man1/rnano.1%{ext_man}
%doc %{_mandir}/man5/nanorc.5%{ext_man}
%{_datadir}/nano/
%files lang -f %{name}.lang
%defattr(-,root,root,-)
%doc %{_defaultdocdir}/nano/man-html/fr/
%changelog