forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
81 lines (66 loc) · 2.03 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package:
name: r-locfit
# Note that conda versions cannot contain -, so any -'s in the version have
# been replaced with _'s.
version: "1.5_9.1"
source:
fn: locfit_1.5-9.1.tar.gz
url:
- http://cran.r-project.org/src/contrib/locfit_1.5-9.1.tar.gz
- http://cran.r-project.org/src/contrib/Archive/locfit/locfit_1.5-9.1.tar.gz
# You can add a hash for the file here, like md5 or sha1
# md5: 49448ba4863157652311cc5ea4fea3ea
# sha1: 3bcfbee008276084cbb37a2b453963c61176a322
# patches:
# List any patch files here
# - fix.patch
build:
# If this is a new build for the same version, increment the build
# number. If you do not include this key, it defaults to 0.
# number: 1
# This is required to make R link correctly on Linux.
rpaths:
- lib/R/lib/
- lib/
# Suggests: akima, gam
requirements:
build:
- r
- r-lattice # [not win]
- gcc # [not win]
run:
- r
- r-lattice # [not win]
- libgcc # [not win]
test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('locfit')" # [not win]
- "\"%R%\" -e \"library('locfit')\"" # [win]
# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
# requires:
# Put any additional test requirements here.
about:
#home:
license: GPL (>= 2)
summary: !!python/unicode 'Local regression, likelihood and density estimation.'
# The original CRAN metadata for this package was:
# Package: locfit
# Version: 1.5-9.1
# Title: Local Regression, Likelihood and Density Estimation.
# Date: 2013-03-22
# Author: Catherine Loader
# Maintainer: Andy Liaw <[email protected]>
# Description: Local regression, likelihood and density estimation.
# Depends: R (>= 2.0.1)
# Imports: lattice
# Suggests: akima, gam
# License: GPL (>= 2)
# Packaged: 2013-04-20 06:56:26 UTC; ripley
# Repository: CRAN
# Date/Publication: 2013-04-20 09:01:16
# NeedsCompilation: yes
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml