mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
27 lines
825 B
Bash
27 lines
825 B
Bash
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
|
|
_pkgname=ARRmData
|
|
_pkgver=1.38.0
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=${_pkgver//-/.}
|
|
pkgrel=2
|
|
pkgdesc="Example dataset for normalization of Illumina 450k Methylation data"
|
|
arch=(any)
|
|
url="https://bioconductor.org/packages/$_pkgname"
|
|
license=('Artistic-2.0')
|
|
depends=(
|
|
r
|
|
)
|
|
source=("https://bioconductor.org/packages/release/data/experiment/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
md5sums=('95475f869b8ff3d6344c0f45f2e616c9')
|
|
b2sums=('d4df88cd5a05fc46e9b6262fd1e225f7329406d4cfd08f5c4c9de21f0ab8d0dd5e3c406702ac8c642f2e5fbf3f71dd8cbae4ce99394461074efa3348049c77b5')
|
|
|
|
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"
|
|
}
|