123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- # $Id: log4c.spec.in,v 1.10 2013/03/24 22:09:20 valtri Exp $
- %define RELEASE 1
- %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
- %define _unpackaged_files_terminate_build 0
- Name: log4c
- Version: 1.2.4
- Release: %rel
- Summary: Log for C
- License: LGPLv2+
- Group: Development/Libraries
- Vendor: Cedric Le Goater <legoater@free.fr>
- Packager: Cedric Le Goater <legoater@free.fr>
- Url: http://%name.sourceforge.net/
- Source: http://prdownloads.sourceforge.net/%name/%name-%version.tar.gz
- BuildRoot: %_topdir/%name-%version-root
- BuildRequires: doxygen
- Requires: /sbin/ldconfig
- %description
- %name is a Logging FrameWork for C, as Log4j or Log4Cpp.
- %package devel
- Summary: Development tools for %name
- Group: Development/Libraries
- Requires: %name = %version
- %package doc
- Summary: documentation for %name
- Group: Development/Libraries
- Requires: %name = %version
- %description devel
- The %name-devel package contains the static libraries and header files
- needed for development with %name.
- %description doc
- The %name-doc package contains the %name documentation
- %prep
- %setup -q
- %build
- %configure --enable-doc
- make
- %install
- rm -rf %{buildroot}
- %makeinstall
- rm %{buildroot}%{_libdir}/*.la
- %clean
- rm -rf %{buildroot}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root)
- %doc AUTHORS COPYING ChangeLog NEWS README
- %{_sysconfdir}/*
- %{_libdir}/*.so.*
- %files devel
- %defattr(-,root,root)
- %{_bindir}/*
- %{_includedir}/*
- %{_libdir}/pkgconfig/*
- %{_libdir}/*.a
- %{_libdir}/*.so
- %{_datadir}/aclocal/*
- %{_mandir}/*/*
- %files doc
- %defattr(-,root,root)
- %doc doc/%{name}.pdf doc/html
- %changelog
- * Mon Feb 21 2002 Cedric Le Goater
- - Initial RPM release.
- # Local Variables:
- # mode:rpm-spec
- # End:
|