package created using the webbuild interface [release 1.1.1-1mamba;Sat Apr 23 2022]

This commit is contained in:
Silvan Calarco 2024-01-05 17:33:41 +01:00
parent 1f3608460f
commit 2252e30d55
3 changed files with 48 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# ruby-mustache # ruby-mustache
Mustache is a framework-agnostic way to render logic-free views.

BIN
mustache-1.1.1.gem Normal file

Binary file not shown.

46
ruby-mustache.spec Normal file
View File

@ -0,0 +1,46 @@
Name: ruby-mustache
Version: 1.1.1
Release: 1mamba
Summary: Mustache is a framework-agnostic way to render logic-free views
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/defunkt/mustache
Source: https://rubygems.org/downloads/mustache-%{version}.gem
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: ruby-devel
Requires: ruby
%description
Mustache is a framework-agnostic way to render logic-free views.
%prep
%setup -q -c %{name}-%{version}
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
gemdir="$(ruby -rrubygems -e'puts Gem.default_dir')"
gem install --no-user-install --ignore-dependencies -i "%{buildroot}$gemdir" -n "%{buildroot}/usr/bin" %{SOURCE0}
rm -rf %{buildroot}${gemdir}/cache
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/mustache
%dir %{_libdir}/ruby/gems/*/doc/mustache-%{version}
%{_libdir}/ruby/gems/*/doc/mustache-%{version}/*
%dir %{_libdir}/ruby/gems/*/gems/mustache-%{version}
%{_libdir}/ruby/gems/*/gems/mustache-%{version}/*
%{_libdir}/ruby/gems/*/specifications/mustache-%{version}.gemspec
%doc mustache-%{version}/LICENSE
%changelog
* Sat Apr 23 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.1-1mamba
- package created using the webbuild interface