blob: 11e4ef8652a435f4532d8508ebcf6fc74c9a7e88 (
plain)
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
_pkgname=minfiData
_pkgver=0.52.0
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Example data for the Illumina Methylation 450k array"
arch=(any)
url="https://bioconductor.org/packages/$_pkgname"
license=('Artistic-2.0')
depends=(
r-illuminahumanmethylation450kanno.ilmn12.hg19
r-illuminahumanmethylation450kmanifest
r-minfi
)
source=("https://bioconductor.org/packages/release/data/experiment/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('8a4cef6c4c950cfa8c6484c289a084c1')
b2sums=('f379a5aa3473e66672c3c222f4e8df11767fe153ced8e68b4021effe06eea0bfebb870dbe8683aecceb6c0f653148bba2de86071fabaf9f9f99aeb3d7e05cbf3')
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
}
|