summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8c43a0bdcd705833197497908e43dd04f201c644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Alex Branham <branham@utexas.edu>
_cranver=0.11-0
pkgname=r-xts
pkgver=${_cranver//[:-]/.}
pkgrel=1
pkgdesc='eXtensible Time Series'
arch=('x86_64')
url='https://cran.r-project.org/package=xts'
license=('GPL')
depends=('r' 'r-zoo>=1.7.12')
optdepends=('r-timeseries' 'r-timedate' 'r-tseries' 'r-chron' 'r-fts' 'r-tis' 'r-runit')
source=("https://cran.r-project.org/src/contrib/xts_"$_cranver".tar.gz")
md5sums=('68599f6c9ccbf4e5595237bea7f0298a')

build(){
    R CMD INSTALL xts_"$_cranver".tar.gz -l "$srcdir"
}
package() {
    install -d "$pkgdir"/usr/lib/R/library
    cp -a --no-preserve=ownership xts "$pkgdir"/usr/lib/R/library
}