summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--install6
3 files changed, 10 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 39627d881a26..3126e571bc97 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = zettlr
pkgdesc = A markdown editor for writing academic texts and taking notes
pkgver = 1.8.4
- pkgrel = 1
+ pkgrel = 2
url = https://www.zettlr.com
+ install = install
arch = x86_64
license = GPL
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index 0abc1e0d9a35..b9d4025cf66c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=zettlr
pkgver=1.8.4
-pkgrel=1
+pkgrel=2
pkgdesc="A markdown editor for writing academic texts and taking notes"
arch=('x86_64')
url='https://www.zettlr.com'
@@ -14,6 +14,7 @@ optdepends=('pandoc: For exporting to various format'
'ttf-lato: Display output in a more comfortable way')
_csl_locale_commit=ecb8e70233e9a68e8b1dda4586061be8f8611a38 # Dec 11, 2020
options=(!strip)
+install=install
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/Zettlr/Zettlr/archive/v${pkgver}.tar.gz"
pandoc-fix.patch::"https://patch-diff.githubusercontent.com/raw/Zettlr/Zettlr/pull/1565.patch"
# citation style
diff --git a/install b/install
new file mode 100644
index 000000000000..0f31d91b82c0
--- /dev/null
+++ b/install
@@ -0,0 +1,6 @@
+post_upgrade() {
+ msg 'There are fix for pandoc export command'
+ msg 'In order to use the new command, make sure to "reset" it once under Advanced tab of Preference'
+ msg 'Or, if it contains customizations,'
+ msg 'Replace `--citeproc --bibliography "$bibliography$"` with `$bibliography$`.'
+}