SHA256
3
0
forked from pool/libedit
libedit/libedit.spec
Ismail Dönmez 0214f43165 Accepting request 313046 from home:scarabeus_iv:branches:devel:libraries:c_c++
I wanted to add one patch, but then I found few bugs in it
but the cleanup itself is okay too.

- Cleanup a bit with spec-cleaner
  * remove pkg_name variable which is equal to name variable

OBS-URL: https://build.opensuse.org/request/show/313046
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libedit?expand=0&rev=54
2015-06-22 12:31:42 +00:00

114 lines
3.4 KiB
RPMSpec

#
# spec file for package libedit
#
# Copyright (c) 2015 SUSE LINUX 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/
#
%define pkg_version 20150325-3.1
%define soname 0
%define library_name libedit%{soname}
Name: libedit
Version: 3.1.snap20150325
Release: 0
Summary: Command Line Editing and History Library
License: BSD-3-Clause
Group: Development/Libraries/C and C++
Url: http://www.thrysoee.dk/editline/
Source: http://thrysoee.dk/editline/libedit-%{pkg_version}.tar.gz
Source1: README.SUSE
Source2: baselibs.conf
Patch2: libedit-20100424-3.0-ncurses.patch
Patch3: libedit-ocloexec.patch
Patch4: libedit-visibility.patch
BuildRequires: gcc-c++
BuildRequires: libtool
BuildRequires: ncurses-devel
BuildRequires: pkgconfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libedit is a command line editing and history library. It is designed
to be used by interactive programs that allow the user to type commands
at a terminal prompt.
%package -n %{library_name}
Summary: Command Line Editing and History Library
Group: Development/Libraries/C and C++
Provides: %{name} = %{version}-%{release}
Obsoletes: %{name} < %{version}
%description -n %{library_name}
libedit is a command line editing and history library. It is designed
to be used by interactive programs that allow the user to type commands
at a terminal prompt.
%package -n libedit-devel
Summary: Development files for libedit
Group: Development/Libraries/C and C++
Requires: %{library_name} = %{version}
Requires: glibc-devel
Provides: %{library_name}-devel = %{version}-%{release}
%description -n libedit-devel
libedit is a command line editing and history library. It is designed
to be used by interactive programs that allow the user to type commands
at a terminal prompt.
This package holds the development files for libedit.
%prep
%setup -q -n %{name}-%{pkg_version}
cp %{SOURCE1} .
%patch2
%patch3
%patch4 -p1
%build
autoreconf -fiv
%configure \
--disable-static \
--with-pic \
--disable-silent-rules \
--enable-widec
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
find %{buildroot} -type f -name "*.la" -delete -print
%check
make %{?_smp_mflags} check
%post -n %{library_name} -p /sbin/ldconfig
%postun -n %{library_name} -p /sbin/ldconfig
%files -n %{library_name}
%defattr(-,root,root,-)
%{_libdir}/libedit.so.%{soname}
%{_libdir}/libedit.so.%{soname}.*
%{_mandir}/man5/editrc.5%{ext_man}
%doc README.SUSE THANKS ChangeLog COPYING examples/*c
%files -n libedit-devel
%defattr(-,root,root,-)
%{_libdir}/libedit.so
%{_includedir}/histedit.h
%{_includedir}/editline/
%{_mandir}/man3/*.3%{ext_man}
%{_libdir}/pkgconfig/libedit.pc
%changelog