summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorxeruf2022-09-19 13:15:27 +0200
committerxeruf2022-09-19 13:15:27 +0200
commit63da09f244a960a14bfb867c9fb0b82b347427d5 (patch)
treecc88954d74e7c5f905a88495293b3aff665e5a22
parentd0b692dceb765945b8cb613258fc57d7cde5b899 (diff)
parent7eb5d92626bcc553228c66233f54e1c802bb098d (diff)
downloadaur-context-modules.tar.gz
Merge context module
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--context.install6
3 files changed, 10 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6bf9f8a50d15..69c20a60380b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = context-modules
pkgdesc = ConTeXt LMTX with all ConTeXt Garden modules
- pkgver = 2022.09.10_02.44
+ pkgver = 2022.09.11_20.44
pkgrel = 1
url = https://wiki.contextgarden.net/Installation
+ install = context.install
arch = x86_64
license = GPL
provides = context
diff --git a/PKGBUILD b/PKGBUILD
index c5ef368f2a6c..b074a7d405c7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=context
pkgname=${_pkgname}-modules
-pkgver=2022.09.10_02.44
+pkgver=2022.09.11_20.44
pkgrel=1
pkgdesc='ConTeXt LMTX with all ConTeXt Garden modules'
arch=('x86_64')
@@ -15,6 +15,7 @@ conflicts=(${_pkgname})
optdepends=()
source=("http://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip")
sha256sums=(SKIP)
+install=${_pkgname}.install
prepare() {
cd "${srcdir}"
diff --git a/context.install b/context.install
new file mode 100644
index 000000000000..f46be4fd0a75
--- /dev/null
+++ b/context.install
@@ -0,0 +1,6 @@
+post_install() {
+ _contextshare=/usr/share/texmf-dist/texmf-context
+ test -d "$_contextshare" || exit $?
+ echo "Add the following to your environment and run it now to use ConTeXt immediately:
+ export TEXMF=${_contextshare}"
+}