1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- Name: __MKIT_PROJ_PKGNAME__
- Version: __MKIT_PROJ_VERSION__
- Release: 1%{?dist}
- Summary: __MKIT_PROJ_NAME__ - __MKIT_PROJ_TAGLINE__
-
- License: GPLv2
- Source0: %{name}-%{version}.tar.gz
-
- BuildArch: noarch
- BuildRequires: coreutils git
- Requires: shellfu-bash => 0.10.0-1
- Requires: shellfu-bash-inigrep
- Requires: shellfu-bash-pretty
- Requires: shellfu-sh-exit
-
- %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.
-
- %prep
- %setup -q
-
- %build
- make %{?_smp_mflags} PREFIX=/usr
-
- %install
- %make_install PREFIX=/usr
-
- %check
- make test \
- "PATH=%{buildroot}%{_bindir}:$PATH" \
- "SHELLFU_DIR=%{buildroot}%{_datadir}/%{name}"
-
- %files
- %doc %{_docdir}/%{name}/README.md
- %{_datadir}/shellfu/include-bash/saturnin.sh
-
-
- %changelog
-
- # specfile built with MKit __MKIT_SELF_VERSION__
|