Name:          @pck_name@
Version:       @pck_version@
Release:       @spec_first_release@@DISTRO_rpm@
Summary:       ...
@if:pck_library
Group:         ...
@else:pck_library
Group:         System/Libraries
@fi:pck_library
Vendor:        @VENDOR@
Distribution:  @DISTRO@
Packager:      @packager_fullname@ <@packager_email@>
URL:           ...
Source:        ...
License:       ...
## AUTOBUILDREQ-BEGIN
## note: run 'autospec -u -a6 @pck_name@' to get the list of build requirements.
## AUTOBUILDREQ-END
@if:buildrequires_buildtool
BuildRequires: @build_tool@
@fi:buildrequires_buildtool
@if:pck_library
Requires:      lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
@fi:pck_library
@if:infopages
Requires(post): %{__install_info}
Requires(preun): %{__install_info}
@fi:infopages
BuildRoot:     @rpm_default_buildroot@

%description
...

@if:pck_library
%package -n lib%{name}
Group:         System/Libraries
Summary:       Shared libraries for %{name}

%description -n lib%{name}
This package contains shared libraries for %{name}.
@fi:pck_library

@if:pck_devel
@if:pck_library
%package -n lib%{name}-devel
@else:pck_library
%package devel
@fi:pck_library
Group:         Development/Libraries
Summary:       Development files for %{name}
@if:pck_library
Requires:      lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
@else:pck_library
Requires:      %{name} = %{?epoch:%epoch:}%{version}-%{release}
@fi:pck_library
## note: you can add this requirement if .pc files are provided by this package
#Requires:      pkg-config

@if:pck_library
%description -n lib%{name}-devel
@else:pck_library
%description devel
@fi:pck_library
This package contains libraries and header files for developing applications that use %{name}.
@fi:pck_devel

@if:pck_tools
%package tools
Group:         Applications/...
Summary:       Utility applications for %{name}
Requires:      %{name} = %{?epoch:%epoch:}%{version}-%{release}

%description tools
This package contains utility applications for %{name}.
@fi:pck_tools

@if:pck_apidocs
%package apidocs
Group:         Documentation
Summary:       %{name} API documentation
Requires:      %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires:      gtk-doc

%description apidocs
This package includes the %{name} API documentation.
@fi:pck_apidocs

@if:debug_package
%debug_package
@fi:debug_package

%prep
%setup -q

%build
@if:pck_apidocs
@configure@ --enable-gtk-doc
@else:pck_apidocs
@configure@
@fi:pck_apidocs
@make@

%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@makeinstall@

@if:i18n
%find_lang %{name} || touch %{name}.lang
@fi:i18n

%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"

@if:pck_library
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
@else:pck_library
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
@fi:pck_library

@if:infopages
@if:pck_library
%post -n lib%{name}-devel
@else:pck_library
%post devel
@fi:pck_library
## modify the infopage name as required
%install_info %{name}.info
exit 0

@if:pck_library
%preun -n lib%{name}-devel
@else:pck_library
%preun devel
@fi:pck_library
## modify the infopage name as required
%uninstall_info %{name}.info
exit 0
@fi:infopages

@if:i18n
%files -f %{name}.lang
@else:i18n
%files
@fi:i18n
%defattr(-,root,root)
## note: this list is just an example; modify as required
@if:pck_library
# %{_bindir}/%{name}
@else:pck_library
# %{_libdir}/*.so.*
@fi:pck_library
# %{_mandir}/man1/%{name}.*
@standard_docs@

@if:pck_library
%files -n lib%{name}
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{_libdir}/*.so.*
@fi:pck_library

@if:pck_devel
@if:pck_library
%files -n lib%{name}-devel
@else:pck_library
%files devel
@fi:pck_library
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{_bindir}/%{name}-config
# %{_datadir}/aclocal/*.m4
# %{_includedir}/*.h
# %{_includedir}/%{name}
# %{_libdir}/*.a
# %{_libdir}/*.la
# %{_libdir}/*.so
# %{_libdir}/pkgconfig/*.pc
# %{_mandir}/man1/%{name}-config.*
# %{_mandir}/man3/*
@if:infopages
# %{_infodir}/*.info.*
@fi:infopages
@standard_docs_devel@
@fi:pck_devel

@if:pck_tools
%files tools
%defattr(-,root,root)
## note: list all the binaries but %{name}-config
# %{_bindir}/...
## note: usually there's a manpages for each tool
# %{_mandir}/man1/*
@fi:pck_tools

@if:pck_apidocs
%files apidocs
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{_datadir}/gtk-doc/html/%{name}
@fi:pck_apidocs

%changelog
* @spec_changelog_date@ @packager_fullname@ <@packager_email@> @pck_version@-@spec_first_release@@DISTRO_rpm@
- @spec_changelog_comment@