libdaemon/libdaemon.spec
Stephan Kulow 45180f7d93 Accepting request 104137 from devel:libraries:c_c++
- Move library back to %{_libdir}, /usr merge project. (forwarded request 103816 from elvigia)

OBS-URL: https://build.opensuse.org/request/show/104137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdaemon?expand=0&rev=22
2012-02-15 15:15:48 +00:00

90 lines
2.5 KiB
RPMSpec

#
# spec file for package libdaemon
#
# Copyright (c) 2012 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: libdaemon
Url: http://0pointer.de/lennart/projects/libdaemon/
Version: 0.14
Release: 0
Summary: Lightweight C library That Eases the Writing of UNIX Daemons
License: LGPL-2.1+
Group: System/Libraries
Source: %{name}-%{version}.tar.bz2
BuildRequires: doxygen
BuildRequires: pkg-config
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libdaemon is a lightweight C library that eases the writing of UNIX
daemons.
%package -n libdaemon0
Summary: Lightweight C library That Eases the Writing of UNIX Daemons
License: LGPL-2.1+
Group: System/Libraries
Provides: %{name} = %{version}
#opensuse 10.3
Obsoletes: %{name} <= 0.12
%description -n libdaemon0
libdaemon is a lightweight C library that eases the writing of UNIX
daemons.
%package devel
Summary: Lightweight C library That Eases the Writing of UNIX Daemons
License: GPL-2.0+
Group: Development/Libraries/C and C++
Requires: libdaemon0 = %{version}
Requires: glibc-devel
%description devel
libdaemon is a lightweight C library that eases the writing of UNIX
daemons.
%prep
%setup -q
%build
%configure \
--disable-static --with-pic \
--disable-lynx
make %{?_smp_mflags}
%install
%makeinstall
rm -f %{buildroot}%{_libdir}/libdaemon.la
# We don't care about the HTML README
rm %{buildroot}%{_datadir}/doc/libdaemon/{README.html,style.css}
%post -n libdaemon0 -p /sbin/ldconfig
%postun -n libdaemon0 -p /sbin/ldconfig
%files -n libdaemon0
%defattr (-,root,root)
%doc LICENSE README
%{_libdir}/libdaemon.so.0*
%files devel
%defattr (-,root,root)
%{_libdir}/libdaemon.so
%{_libdir}/pkgconfig/libdaemon.pc
%dir %{_includedir}/libdaemon
%{_includedir}/libdaemon/*.h
%changelog