Date: Thursday, February 20, 2020 @ 08:03:36 Author: alucryd Revision: 576961
archrelease: copy trunk to community-staging-x86_64 Added: pantheon-code/repos/community-staging-x86_64/ pantheon-code/repos/community-staging-x86_64/PKGBUILD (from rev 576960, pantheon-code/trunk/PKGBUILD) ----------+ PKGBUILD | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) Copied: pantheon-code/repos/community-staging-x86_64/PKGBUILD (from rev 576960, pantheon-code/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-02-20 08:03:36 UTC (rev 576961) @@ -0,0 +1,59 @@ +# Maintainer: Maxime Gauduin <aluc...@archlinux.org> +# Contributor: Ner0 <darkelfdarkelf...@yahoo.co.uk> + +pkgname=pantheon-code +pkgver=3.2.0 +pkgrel=3 +pkgdesc='The Pantheon Text Editor' +arch=(x86_64) +url=https://github.com/elementary/code +license=(GPL3) +groups=(pantheon) +depends=( + editorconfig-core-c + glib2 + gtk3 + gtksourceview3 + libgee + libgit2-glib + libgranite.so + libpeas + pango +) +makedepends=( + git + gobject-introspection + gtkspell3 + intltool + libsoup + meson + vala + vte3 + webkit2gtk +) +optdepends=( + 'gtkspell3: Spell Check plugin' + 'libsoup: Pastebin plugin' + 'vala: Outline plugin' + 'vte3: Terminal plugin' + 'webkit2gtk: Browser Preview plugin' +) +source=(pantheon-code::git+https://github.com/elementary/code.git#tag=419132ae2d24933456c79cf00251d3f38f0a6f4d) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-code + + git describe --tags +} + +build() { + arch-meson pantheon-code build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" meson install -C build +} + +# vim: ts=2 sw=2 et: