1234567891011121314151617181920212223242526272829303132333435363738 |
- %global sfincb %{_datadir}/shellfu/include-bash
- %global sfmodn __SHELLFU_MODNAME__
- %global shellfu_req shellfu >= 0.10.7, shellfu < 0.11
- %global jat_req shellfu-bash-jat >= 0.0.1, shellfu-bash-jat < 0.0.2
-
- Name: __MKIT_PROJ_PKGNAME__
- Version: __MKIT_PROJ_VERSION__
- Release: 1%{?dist}
- Summary: __MKIT_PROJ_NAME__ - __MKIT_PROJ_TAGLINE__
- URL: __MKIT_PROJ_VCS_BROWSER__
- License: LGPLv2
- Source0: %{name}-%{version}.tar.gz
- BuildArch: noarch
-
- Requires: %jat_req
- Requires: %shellfu_req
- Requires: shellfu-bash
- Requires: shellfu-bash-pretty
- %description
- __SHELLFU_MODDESC__
-
- %prep
- %setup -q
-
- %build
- make %{?_smp_mflags} PREFIX=/usr
-
- %install
- %make_install PREFIX=/usr
-
- %files
- %doc %{_docdir}/%{name}/README.md
- %{sfincb}/%{sfmodn}.sh
-
-
- %changelog
-
- # specfile built with MKit __MKIT_SELF_VERSION__
|