summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 971f1dd91d37773a3c048b39fd001f4f56b01601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Maintainer: Fabian Bornschein <fabiscafe@archlinux.org>
# Contributor: Balló György <ballogyor+arch at gmail dot com>
# Contributor: Tobias Bohrmann (PlainTextField) <honeypot.carbage@aechelon.de>
# Contributor: Bernd Prünster (JesusMcCloud) <aur@berndpruenster.org>

pkgname=enter-tex
pkgver=3.47.0
pkgrel=2
pkgdesc='TeX/LaTeX text editor'
arch=('x86_64')
url='https://gitlab.gnome.org/swilmet/enter-tex'
license=('GPL-3.0-or-later')
depends=(
  dconf
  gdk-pixbuf2
  glib2
  glibc
  gsettings-desktop-schemas
  gspell
  gtk3
  hicolor-icon-theme
  libgedit-amtk
  libgedit-gtksourceview 
  libgedit-tepl
  libgee
  pango
)
makedepends=(
  appstream-glib
  git
  glib2-devel
  gobject-introspection
  gtk-doc
  meson
  vala
  yelp-tools
)
optdepends=('texlive-latex: build LaTeX documents')
provides=('gnome-latex')
conflicts=('gnome-latex')
replaces=('gnome-latex')
source=("git+https://gitlab.gnome.org/swilmet/enter-tex.git#tag=$pkgver")
b2sums=('0f50e29d4ef3fff84f05f76248629a8eddc3f498078299e91aacfbd141e0991ffc8c4bcd9a5947cfb046e3305111714bc5b0b16830342ded1cf8c7ef054e1432')

prepare() {
  cd $pkgname
}

build() {
  arch-meson $pkgname build
  ninja src/gtex/Gtex-1.gir -C build
  ninja -C build
}

check() (
  meson test -C build --print-errorlogs
)

package() {
  meson install -C build --destdir "$pkgdir"
}