Package Details: rstudio-desktop-bin 2024.04.1.748-1

Git Clone URL: https://aur.archlinux.org/rstudio-desktop-bin.git (read-only, click to copy)
Package Base: rstudio-desktop-bin
Description: An integrated development environment (IDE) for R (binary from RStudio official repository)
Upstream URL: http://www.rstudio.org/
Licenses: GPL
Conflicts: rstudio-desktop, rstudio-desktop-git, rstudio-desktop-preview-bin
Provides: rstudio-desktop
Submitter: Meow
Maintainer: Meow
Last Packager: Meow
Votes: 345
Popularity: 1.70
First Submitted: 2011-06-16 16:26 (UTC)
Last Updated: 2024-05-24 10:46 (UTC)

Latest Comments

« First ‹ Previous 1 .. 17 18 19 20 21 22 23 24 25 26 27 28 Next › Last »

hopimet commented on 2015-09-27 19:04 (UTC)

Well, I have some new informations. The pkgbuild works well in 64 bits architecture. In 32 bits it still doesn't install with the same errors I previously reported. So I modified the pkgbuild and added: mkdir -p "$pkgdir/usr/lib/rstudio/bin/rsclang" # because rsclang is not created cd "$pkgdir/usr/lib/rstudio/bin/rsclang" # unchanged ln -sf /usr/lib/libclang.so ./ # a symlink for libclang.so, so you need clang #patchelf --set-rpath '$ORIGIN/..' libclang.so # commented because it gives the following error 'stat: No such file or directory.' Then it worked (installed on 2 computers). I suspect the 32 bits .deb has a problem because there is no rsclang subdirectory after decompression.

linux_dream commented on 2015-09-27 15:06 (UTC)

The latest package installs correctly here, but fails with a seg. fault at executing: http://pastebin.com/KiiTXJVq.

artemklevtsov commented on 2015-09-27 10:37 (UTC)

@hopimet: use mkdir -p.

hopimet commented on 2015-09-27 08:03 (UTC)

Despite the modifications the installation still doesn't work and returns the same error about "$pkgdir/usr/lib/rstudio/bin/rsclang": this directory does not exist. I added: mkdir "$pkgdir/usr/lib/rstudio/bin/rsclang" in the pkgbuild. Then the installation goes further but returns another error: stat: No such file or directory. Thanks in advance for your help

hopimet commented on 2015-09-26 19:02 (UTC)

This revision doesn't install. A new dependency for clang has been introduced (I don't know why). Then the installation fails when the pkgbuild tries to enter in cd "$pkgdir/usr/lib/rstudio/bin/rsclang" (cd "$pkgdir/usr/lib/rstudio/bin/rsclang" at line 57) because this directory doesn't exist. You need to to create the directory before line 57. I suggest to add: mkdir "$pkgdir/usr/lib/rstudio/bin/rsclang" before cd "$pkgdir/usr/lib/rstudio/bin/rsclang"

AsmundEr commented on 2015-08-28 13:52 (UTC)

The pandoc that ships with the latest rstudio-desktop-bin (0.99.473) no longer works. See https://github.com/rstudio/rmarkdown/issues/498 . Current confirmed workaround is to install pandoc via cabal and replace /usr/lib/rstudio/bin/pandoc/* with the pandoc and pandoc-citeproc binaries from that install. Beware, this will compile pandoc from scratch, which takes a **long** time and uses a lot of disk space. Also, I suspect the maintainer forgot to include the .SRCINFO in their latest update commit, hence this page says 0.99.442 but the PKGBUILD says 0.99.467. (I've done this myself on other packages. It's easy to forget, and IMO there should be a global git hook on AUR to remind us.)