updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / r-reshape / PKGBUILD
blob67fdbfa540eed3cafa28ea7a00524fa0105b8ca5
1 # Contributor: Nick B <Shirakawasuna at gmail _dot_com>
3 pkgname=r-reshape
4 pkgver=0.8.4
5 pkgrel=1
6 pkgdesc="Reshape lets you flexibly restructure and aggregate data using just two functions: melt and cast.  For the R language."
7 arch=('i686' 'x86_64')
8 url="http://cran.r-project.org/web/packages/reshape/index.html"
9 license=('MIT')
10 depends=('r' 'r-plyr')
11 source=(http://cran.r-project.org/src/contrib/reshape_$pkgver.tar.gz)
13 build() {
14  mkdir -p $pkgdir/usr/lib/R/library
15  cd $srcdir
16  R CMD INSTALL -l ../pkg/usr/lib/R/library ./reshape
18  #reshape doesn't come with a license spelled out in its entirety, it just says 'MIT'
19  install -D -m644 $srcdir/reshape/DESCRIPTION $pkgdir/usr/share/licenses/r-reshape/DESCRIPTION
21 md5sums=('eade37fd6dc3b2f12207b5eb259ab41f')