| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- Name:		__MKIT_PROJ_PKGNAME__
 - Version:	__MKIT_PROJ_VERSION__
 - Release:	1%{?dist}
 - Summary:	__MKIT_PROJ_NAME__ - __MKIT_PROJ_TAGLINE__
 - 
 - License:	LGPLv2
 - Source0:	%{name}-%{version}.tar.gz
 - 
 - BuildArch:	noarch
 - BuildRequires:	coreutils git
 - Requires:	shellfu >= 0.10.1
 - Requires:	shellfu-bash-saturnin >= 0.4.6
 - 
 - %description
 - saturnin is Shellfu library that helps you easily build toolkit from
 - various scripts that you may have lying around.  Instead of having a
 - herd of untamed undocumented and hard-to-share scripts, with help of
 - saturnin you can easily create and package a meta-command with a set
 - of discoverable and maintainable sub-commands.
 - 
 - This package contains a demo meta-command built with saturnin; you can
 - also re-use the source as template for your new toolkit.
 - 
 - %prep
 - %setup -q
 - 
 - 
 - %build
 - # %%configure
 - make %{?_smp_mflags}
 - 
 - %install
 - %make_install
 - 
 - %files
 - %config %{_sysconfdir}/bash_completion.d/saturnin-demo.bash
 - %dir /usr/local/libexec/saturnin-demo
 - %dir /usr/local/share/saturnin-demo
 - %dir /usr/local/share/saturnin-demo/ini.d
 - %dir /usr/local/share/saturnin-demo/ini.d/main
 - %doc /usr/local/share/doc/saturnin-demo/README.md
 - /usr/local/bin/saturnin-demo
 - /usr/local/libexec/saturnin-demo/saturnin-demo-dump
 - /usr/local/libexec/saturnin-demo/saturnin-demo-echo
 - /usr/local/share/saturnin-demo/ini.d/main/echo.ini
 - 
 - 
 - %changelog
 - 
 - # specfile built with MKit __MKIT_SELF_VERSION__
 
 
  |