]> git.pld-linux.org Git - packages/R-cran-plyr.git/blame - R-cran-plyr.spec
- new
[packages/R-cran-plyr.git] / R-cran-plyr.spec
CommitLineData
8a963334
JR
1%define fversion %(echo %{version} |tr r -)
2%define modulename plyr
3Summary: Tools for splitting, applying and combining data
4Name: R-cran-%{modulename}
5Version: 1.8
6Release: 1
7License: GPL v2
8Group: Applications/Math
9Source0: ftp://stat.ethz.ch/R-CRAN/src/contrib/%{modulename}_%{fversion}.tar.gz
10# Source0-md5: e1c1d2f0c47fd16b2cef6ec9c2e5883c
11URL: http://cran.fhcrc.org/web/packages/plyr/index.html
12BuildRequires: R >= 2.8.1
13Requires(post,postun): R >= 2.8.1
14Requires(post,postun): perl-base
15Requires(post,postun): textutils
16Requires: R
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20plyr is a set of tools that solves a common set of problems: you need
21to break a big problem down into manageable pieces, operate on each
22pieces and then put all the pieces back together. For example,
23you might want to fit a model to each spatial location or time point
24in your study, summarise data by panels or collapse high-dimensional
25arrays to simpler summary statistics. The development of plyr has been
26generously supported by BD (Becton Dickinson).
27
28%prep
29%setup -q -c
30
31%build
32R CMD build %{modulename} --no-build-vignettes
33
34%install
35rm -rf $RPM_BUILD_ROOT
36install -d $RPM_BUILD_ROOT%{_libdir}/R/library/
37R CMD INSTALL %{modulename} --library=$RPM_BUILD_ROOT%{_libdir}/R/library/
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
44%doc %{modulename}/DESCRIPTION
45%{_libdir}/R/library/%{modulename}
This page took 0.055427 seconds and 4 git commands to generate.