123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- 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-bash
- Requires: shellfu-bash-core
- Requires: shellfu-bash-saturnin
-
- %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__
|