summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
-rw-r--r--context.install6
3 files changed, 5 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 329691be6bee..96bca6b019e2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = context
pkgdesc = ConTeXt LMTX, the Lean and Mean TeX eXperience with Lua, MetaPost, TeX, and XML
- pkgver = 2022.08.25_19.21
+ pkgver = 2022.09.10_02.44
pkgrel = 1
url = https://wiki.contextgarden.net/Installation
- install = context.install
arch = x86_64
license = GPL
provides = context
provides = context-lmtx
+ conflicts = context
replaces = context-bin
source = http://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index ba76684073f7..b0f3c727bafc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=context
pkgname=${_pkgname}
-pkgver=2022.08.25_19.21
+pkgver=2022.09.10_02.44
pkgrel=1
pkgdesc='ConTeXt LMTX, the Lean and Mean TeX eXperience with Lua, MetaPost, TeX, and XML'
arch=('x86_64')
@@ -11,11 +11,10 @@ license=(GPL)
depends=()
replaces=(context-bin)
provides=(${_pkgname} ${_pkgname}-lmtx)
-conflicts=()
+conflicts=(${_pkgname})
optdepends=()
source=("http://lmtx.pragma-ade.nl/install-lmtx/context-linux-64.zip")
sha256sums=(SKIP)
-install=${_pkgname}.install
prepare() {
cd "${srcdir}"
@@ -33,6 +32,7 @@ package() {
}
pkgver() {
+ # TODO use https://wiki.contextgarden.net/LMTX#How_to_check_for_newer_versions.3F
cat "${srcdir}/tex/texmf-context/tex/context/base/mkxl/context.mkxl" |
grep "def\\\\contextversion" |
sed 's/^.*{\(.*\)}.*$/\1/' |
diff --git a/context.install b/context.install
deleted file mode 100644
index f5d5f0d72443..000000000000
--- a/context.install
+++ /dev/null
@@ -1,6 +0,0 @@
-post_install() {
- _contextshare=/usr/share/context
- echo "Add the following to your shell rc file:
- export TEXMF=${_contextshare}"
- export TEXMF=${_contextshare}
-}