summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1fc003a0f6a17dc664812b7c7fa5e474a47dbf12 (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
# Maintainer: Konstantin Unruh <freaxmate@protonmail.com>
pkgname=pluma-plugins
pkgver=1.26.0
pkgrel=2
pkgdesc="A set of plugins for Pluma"
arch=('any')
url="https://github.com/mate-desktop/$pkgname"
license=('GPL2')
depends=('pluma>=1.26.0')
makedepends=('autoconf-archive' 'gtksourceview4' 'gobject-introspection' 'make' 'mate-common' 'yelp-tools')
optdepends=('atril: to use the synctex plugin with atril'
            'dbus-python: to use the synctex plugin with atril'
            'ctags: to use the sourcecode browser'
            'vte3: to use the embedded terminal'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/mate-desktop/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=('d9075281121fedce74eeda752d012f8b86407a5e1c89b25b4c370bb07c50f5dc30e74e11b6aa5333fcc401d45d220b801eb8dedf0650ae9aa16d9af271cac80e')

build() {
  cd "$pkgname-$pkgver"
  ./autogen.sh
  make
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="${pkgdir}" install
}