summaryrefslogtreecommitdiff
path: root/pcr/rstudio-desktop/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/rstudio-desktop/PKGBUILD')
-rw-r--r--pcr/rstudio-desktop/PKGBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/pcr/rstudio-desktop/PKGBUILD b/pcr/rstudio-desktop/PKGBUILD
deleted file mode 100644
index 569df2b33..000000000
--- a/pcr/rstudio-desktop/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# Maintainer: TDY <tdy@archlinux.info>
-# Contributor: Ben Ward <benjamin.ward@bathspa.org>
-
-pkgname=rstudio-desktop
-pkgver=0.97.332
-_commit=e65a459
-pkgrel=1
-pkgdesc="A powerful and productive user interface for R"
-arch=('i686' 'x86_64')
-url="http://www.rstudio.org/"
-license=('AGPL')
-depends=('r>=2.11.1' 'qtwebkit' 'boost-libs>=1.50' 'shared-mime-info')
-makedepends=('git' 'cmake>=2.8' 'boost>=1.50' 'java-environment' 'apache-ant' 'unzip' 'openssl' 'pam' 'wget')
-install=rstudio.install
-source=($pkgname-$pkgver.tgz::https://github.com/rstudio/rstudio/tarball/v$pkgver)
-md5sums=('0197506486c76ed1bff71a534072e0e9')
-
-build() {
- cd "$srcdir/rstudio-rstudio-$_commit/dependencies/common"
- sh install-gwt
- sh install-dictionaries
- sh install-mathjax
-
- rm -rf "$srcdir/rstudio-rstudio-$_commit/build"
- install -dm755 "$srcdir/rstudio-rstudio-$_commit/build"
- cd "$srcdir/rstudio-rstudio-$_commit/build"
- cmake -DRSTUDIO_TARGET=Desktop \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr/lib/rstudio ..
-}
-
-package() {
- cd "$srcdir/rstudio-rstudio-$_commit/build"
- make DESTDIR="$pkgdir/" install
- install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et: