47 lines
1.3 KiB
RPMSpec
47 lines
1.3 KiB
RPMSpec
%define gemdir %(ruby -rubygems -e'puts Gem.default_dir')
|
|
%define gemname %(echo %{name} | sed 's,^ruby-,,')
|
|
Name: ruby-json_pure
|
|
Version: 1.8.1
|
|
Release: 1mamba
|
|
Summary: A JSON implementation in pure Ruby
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: http://flori.github.io/json/
|
|
Source: http://rubygems.org/downloads/json_pure-%{version}.gem
|
|
License: GPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: ruby-devel
|
|
Requires: ruby
|
|
|
|
%description
|
|
A JSON implementation in pure Ruby.
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
gem install --no-user-install --ignore-dependencies -u -i "%{buildroot}%{gemdir}" \
|
|
--no-ri --no-rdoc -n "%{buildroot}/usr/bin" "%{SOURCE0}"
|
|
|
|
rm -rf %{buildroot}%{gemdir}/cache
|
|
rm -f %{buildroot}%{gemdir}/gems/%{gemname}-%{version}/.gitignore
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{gemdir}/gems/%{gemname}-%{version}
|
|
%{gemdir}/gems/%{gemname}-%{version}/*
|
|
%{gemdir}/gems/%{gemname}-%{version}/.travis.yml
|
|
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
|
|
|
%changelog
|
|
* Wed Dec 11 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8.1-1mamba
|
|
- package created using the webbuild interface
|