mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
28 lines
901 B
Bash
28 lines
901 B
Bash
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
|
|
# Contributor: sukanka <su975853527@gmail.com>
|
|
|
|
_pkgname=hgu95av2cdf
|
|
_pkgver=2.18.0
|
|
pkgname=r-${_pkgname,,}
|
|
pkgver=${_pkgver//-/.}
|
|
pkgrel=5
|
|
pkgdesc="A package containing an environment representing the HG_U95Av2.CDF file"
|
|
arch=(any)
|
|
url="https://bioconductor.org/packages/$_pkgname"
|
|
license=('LGPL-2.0-or-later')
|
|
depends=(
|
|
r-annotationdbi
|
|
)
|
|
source=("https://bioconductor.org/packages/release/data/annotation/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
|
md5sums=('026bae2f76433593f75ca6c79bc9a9d0')
|
|
b2sums=('bf0c3f1edbcfae649b7265f727fab8a6cac73ec4fadfaad6148a1d8325f936531bc41d9dbe476e272d932d98bd54942f78ffbe1488263a1260247e34667f8fdd')
|
|
|
|
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"
|
|
}
|