mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
add r-treeandleaf
This commit is contained in:
commit
cd63a1afa4
2 changed files with 70 additions and 0 deletions
27
.SRCINFO
Normal file
27
.SRCINFO
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
pkgbase = r-treeandleaf
|
||||
pkgdesc = Displaying binary trees with focus on dendrogram leaves
|
||||
pkgver = 1.8.0
|
||||
pkgrel = 1
|
||||
url = https://bioconductor.org/packages/TreeAndLeaf
|
||||
arch = any
|
||||
license = Artistic2.0
|
||||
depends = r
|
||||
depends = r-ape
|
||||
depends = r-igraph
|
||||
depends = r-reder
|
||||
optdepends = r-biocgenerics
|
||||
optdepends = r-biocstyle
|
||||
optdepends = r-dendextend
|
||||
optdepends = r-dplyr
|
||||
optdepends = r-geneplast
|
||||
optdepends = r-ggplot2
|
||||
optdepends = r-ggtree
|
||||
optdepends = r-knitr
|
||||
optdepends = r-rcolorbrewer
|
||||
optdepends = r-rmarkdown
|
||||
optdepends = r-runit
|
||||
optdepends = r-stringr
|
||||
source = https://bioconductor.org/packages/release/bioc/src/contrib/TreeAndLeaf_1.8.0.tar.gz
|
||||
sha256sums = d062e8fb92173cad6762743d121b4357f542360e56a5b0e7f8518b271ce3af73
|
||||
|
||||
pkgname = r-treeandleaf
|
||||
43
PKGBUILD
Normal file
43
PKGBUILD
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
||||
|
||||
_pkgname=TreeAndLeaf
|
||||
_pkgver=1.8.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=1.8.0
|
||||
pkgrel=1
|
||||
pkgdesc='Displaying binary trees with focus on dendrogram leaves'
|
||||
arch=('any')
|
||||
url="https://bioconductor.org/packages/${_pkgname}"
|
||||
license=('Artistic2.0')
|
||||
depends=(
|
||||
r
|
||||
r-ape
|
||||
r-igraph
|
||||
r-reder
|
||||
)
|
||||
optdepends=(
|
||||
r-biocgenerics
|
||||
r-biocstyle
|
||||
r-dendextend
|
||||
r-dplyr
|
||||
r-geneplast
|
||||
r-ggplot2
|
||||
r-ggtree
|
||||
r-knitr
|
||||
r-rcolorbrewer
|
||||
r-rmarkdown
|
||||
r-runit
|
||||
r-stringr
|
||||
)
|
||||
source=("https://bioconductor.org/packages/release/bioc/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('d062e8fb92173cad6762743d121b4357f542360e56a5b0e7f8518b271ce3af73')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
||||
Loading…
Add table
Reference in a new issue