package created by autospec [release 0.14-1mamba;Tue Jun 05 2012]

This commit is contained in:
Stefano Cotta Ramusino 2024-01-05 17:54:03 +01:00
parent 65f9f564f8
commit 771a0d7079
2 changed files with 51 additions and 0 deletions

47
R-outliers.spec Normal file
View File

@ -0,0 +1,47 @@
%define pkgname outliers
%define _rlibdir %{_datadir}/R/library
Name: R-%{pkgname}
Version: 0.14
Release: 1mamba
Summary: A collection of some tests commonly used for identifying outliers.
Group: Applications/Mathematics
Vendor: openmamba
Distribution: openmamba
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
URL: http://cran.r-project.org/web/packages/outliers
Source: http://cran.r-project.org/src/contrib/%{pkgname}_%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: R
## AUTOBUILDREQ-END
Requires: R
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A collection of some tests commonly used for identifying outliers.
This package contains an R extension.
%prep
%setup -q -n %{pkgname}
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -d %{buildroot}%{_rlibdir}
R CMD INSTALL %{S:0} \
-l %{buildroot}%{_rlibdir}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_rlibdir}/%{pkgname}
%changelog
* Tue Jun 05 2012 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 0.14-1mamba
- package created by autospec

View File

@ -1,2 +1,6 @@
# R-outliers # R-outliers
A collection of some tests commonly used for identifying outliers.
This package contains an R extension.