Compare commits
2 commits
153052e730
...
e8738bfc35
Author | SHA1 | Date | |
---|---|---|---|
|
e8738bfc35 | ||
|
e8d53999b8 |
|
@ -2,10 +2,10 @@
|
|||
# Contributor: Aleksandr Beliaev <trap000d at gmail dot com>
|
||||
|
||||
pkgname=quarto-cli
|
||||
pkgver=1.6.40
|
||||
pkgver=1.6.42
|
||||
pkgrel=1
|
||||
_denodomver="0.1.41-alpha-artifacts"
|
||||
_denover="2.1.6-1"
|
||||
_denover="2.1.9-1"
|
||||
_deno_arch="deno-x86_64-unknown-linux-gnu"
|
||||
pkgdesc="Quarto is an open-source scientific and technical publishing system built on [Pandoc](https://pandoc.org)"
|
||||
arch=('x86_64')
|
||||
|
@ -31,8 +31,8 @@ source=("https://github.com/quarto-dev/$pkgname/releases/download/v$pkgver/$prov
|
|||
"https://archive.archlinux.org/packages/d/deno/deno-$_denover-x86_64.pkg.tar.zst"
|
||||
"https://github.com/b-fuze/deno-dom/archive/refs/tags/v$_denodomver.tar.gz"
|
||||
"000_pandoc_lua.diff")
|
||||
sha256sums=("77be18b02b414847714aeaa73d1a3a397c429c5d75f0bebd77df5c9cf974e7fa"
|
||||
"9eb14ae668ec324f2d562ded3e6b058f991bd5eaae9dad7e8eb9565590e73269"
|
||||
sha256sums=("f667f561f71f09631969816563224df562a544793c536b2ad8449be26ab3dec6"
|
||||
"71845fa75d32d47fc6e4f6dc22e75072fe5dd91adf344957da14ae3fb87552eb"
|
||||
"5ab1a73e73b9edf9d2c81e655658d970e6212497a5368d8f0bc8613bbdf8d91d"
|
||||
"0f27dff1e1b16e4f2f21c43b838aaae18bf9f82339eb65878b24de128f89450f")
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
_pkgname="rstudio-desktop"
|
||||
pkgname="$_pkgname"
|
||||
pkgver=2024.12.1.563
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A powerful and productive integrated development environment (IDE) for R programming language"
|
||||
url="https://github.com/rstudio/rstudio"
|
||||
license=('AGPL-3.0-only')
|
||||
|
@ -33,6 +33,7 @@ depends=("quarto-cli"
|
|||
'libboost_program_options.so' # boost-libs
|
||||
'libboost_thread.so' # boost-libs
|
||||
'libcups'
|
||||
'libyaml-cpp.so' # yaml-cpp
|
||||
'mathjax2'
|
||||
'nspr'
|
||||
'nss'
|
||||
|
@ -47,9 +48,10 @@ makedepends=(
|
|||
'java-environment'
|
||||
'libcups'
|
||||
'ninja'
|
||||
'nvm' # AUR
|
||||
'nvm'
|
||||
'openssl'
|
||||
'pam'
|
||||
'postgresql-libs'
|
||||
'python'
|
||||
'python-setuptools'
|
||||
'wget'
|
||||
|
@ -59,6 +61,7 @@ optdepends=(
|
|||
'git: for git support'
|
||||
'nodejs: for copilot support'
|
||||
'openssh-askpass: for a git ssh access'
|
||||
'postgresql-libs: for postgresql'
|
||||
'quarto: for Quarto projects support'
|
||||
'subversion: for subversion support'
|
||||
)
|
||||
|
@ -197,6 +200,8 @@ prepare() (
|
|||
)
|
||||
|
||||
build() (
|
||||
export CMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
|
||||
_nvm_env
|
||||
_run_if_exists _build_soci
|
||||
|
||||
|
@ -263,8 +268,9 @@ build() (
|
|||
-G Ninja
|
||||
-DCMAKE_BUILD_TYPE=None
|
||||
-DRSTUDIO_TARGET=Electron
|
||||
-DRSTUDIO_USE_SYSTEM_BOOST=YES
|
||||
-DRSTUDIO_USE_SYSTEM_SOCI=NO
|
||||
-DRSTUDIO_USE_SYSTEM_BOOST=ON
|
||||
-DRSTUDIO_USE_SYSTEM_SOCI=OFF
|
||||
-DRSTUDIO_USE_SYSTEM_YAML_CPP=ON
|
||||
-DRSTUDIO_NODE_VERSION="Current"
|
||||
-DRSTUDIO_INSTALLED_NODE_VERSION="Current"
|
||||
-DQUARTO_ENABLED=${_quarto}
|
||||
|
@ -286,8 +292,6 @@ package() {
|
|||
# See following script for potentially useful flags.
|
||||
# https://github.com/ozankiratli/dotfiles/blob/master/.config/sway/scripts/rstudio-wayland
|
||||
|
||||
#!/usr/bin/bash
|
||||
|
||||
name=rstudio
|
||||
flags_file="\${XDG_CONFIG_HOME:-\$HOME/.config}/\${name}-flags.conf"
|
||||
fallback_file="\${XDG_CONFIG_HOME:-\$HOME/.config}/electron-flags.conf"
|
||||
|
|
Loading…
Reference in a new issue