summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem A Klevtsov2015-07-29 09:55:45 +0700
committerArtem A Klevtsov2015-07-29 09:55:45 +0700
commit613ef6c7389ca7aa9a4eed56f1c70529140f00cf (patch)
tree9a7b810462ffe95caa3a0bf6ee1b038bc2db70e4
parent7792471e5ca45b95eb4049d771d66a202f3ce052 (diff)
downloadaur-613ef6c7389ca7aa9a4eed56f1c70529140f00cf.tar.gz
Fix symlinks
-rw-r--r--PKGBUILD8
1 files changed, 5 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b378b650a216..3fdef2ace4a4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=rstudio-desktop-git
_gitname=rstudio
-pkgver=0.99.632
+pkgver=0.99.636
_gwtver=2.7.0
_ginver=1.5
pkgrel=1
@@ -67,8 +67,10 @@ package() {
# Creaate symlinks
install -d "${pkgdir}/usr/bin"
ln -sf /usr/lib/rstudio/bin/rstudio "${pkgdir}/usr/bin/rstudio"
- ln -sf /usr/share/myspell/dicts "${pkgdir}/usr/lib/rstudio/resources/dictionaries/"
- ln -sf /usr/share/mathjax "${pkgdir}/usr/lib/rstudio/resources/mathjax-23/"
+ rm -rf "${pkgdir}/usr/lib/rstudio/resources/dictionaries"
+ ln -sf /usr/share/myspell/dicts "${pkgdir}/usr/lib/rstudio/resources/dictionaries"
+ rm -rf "${pkgdir}/usr/lib/rstudio/resources/mathjax-23"
+ ln -sf /usr/share/mathjax "${pkgdir}/usr/lib/rstudio/resources/mathjax-23"
install -d "${pkgdir}/usr/lib/rstudio/bin/pandoc"
ln -sf /usr/bin/pandoc "${pkgdir}/usr/lib/rstudio/bin/pandoc/pandoc"
ln -sf /usr/bin/pandoc-citeproc "${pkgdir}/usr/lib/rstudio/bin/pandoc/pandoc-citeproc"