mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=rstudio
|
|
_pkgname=rstudio-rstudio
|
|
pkgver=0.98.501
|
|
_pkgver=c097d85
|
|
pkgrel=1
|
|
pkgdesc="A new integrated development environment (IDE) for R - The Desktop Client"
|
|
arch=('x86_64')
|
|
url="http://www.rstudio.org/"
|
|
license=('AGPL')
|
|
depends=('boost-libs' 'java-environment' 'qtwebkit' 'r')
|
|
makedepends=('apache-ant' 'boost' 'bzip2' 'cmake' 'git' 'icu' 'openssl' 'pam' 'unzip' 'wget' 'libcups')
|
|
provides=('rstudio-desktop')
|
|
categories=('programming')
|
|
source=("https://github.com/$pkgname/$pkgname/tarball/v$pkgver")
|
|
md5sums=('1bd61ad7bd8991ec637db3d714da5421')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname-$_pkgver/dependencies/common
|
|
sh install-gwt
|
|
sh install-dictionaries
|
|
sh install-mathjax
|
|
|
|
# Configure and build.
|
|
cd $srcdir/$_pkgname-$_pkgver
|
|
|
|
mkdir build
|
|
cd build
|
|
unset LDFLAGS
|
|
cmake \
|
|
-DRSTUDIO_TARGET=Desktop \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr/local/lib/$pkgname \
|
|
..
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname-$_pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|