[arch-commits] Commit in folks/repos (2 files)
Jan Steffens
heftig at gemini.archlinux.org
Mon Nov 8 20:25:29 UTC 2021
Date: Monday, November 8, 2021 @ 20:25:28
Author: heftig
Revision: 427602
archrelease: copy trunk to gnome-unstable-x86_64
Added:
folks/repos/gnome-unstable-x86_64/
folks/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 427600, folks/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: folks/repos/gnome-unstable-x86_64/PKGBUILD (from rev 427600, folks/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2021-11-08 20:25:28 UTC (rev 427602)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=folks
+pkgver=0.15.3+6+gdb1de866
+pkgrel=1
+pkgdesc="Library to aggregates people into metacontacts"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/Folks"
+license=(LGPL2.1)
+depends=(libgee libxml2 evolution-data-server)
+makedepends=(gobject-introspection gtk-doc vala git meson python-dbusmock)
+provides=(libfolks.so libfolks-{dummy,eds}.so)
+_commit=db1de866217d98f6b25edc92ca54d82c4dc082a8 # master
+source=("git+https://gitlab.gnome.org/GNOME/folks.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ local meson_args=(
+ -D b_lto=false # LTO copies some GType constructors
+ -D docs=true
+ -D telepathy_backend=false
+ )
+ arch-meson $pkgname build "${meson_args[@]}"
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs -t 4
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 et:
More information about the arch-commits
mailing list