Package Details: rstudio-desktop-bin 2024.12.0.467-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: 352
Popularity: 1.52
First Submitted: 2011-06-16 16:26 (UTC)
Last Updated: 2024-12-20 01:26 (UTC)

Latest Comments

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

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

OK I was right. In the 64-bit .deb package there is a subdirectory /usr/lib/rstudio/bin/rsclang/ providing libclang.so. This subdirectory (and of course libclang.so) is not present in the 32-bit .deb package.

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"