diff options
-rw-r--r-- | testing/folks/APKBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/folks/APKBUILD b/testing/folks/APKBUILD new file mode 100644 index 0000000000..c93436cbf3 --- /dev/null +++ b/testing/folks/APKBUILD @@ -0,0 +1,46 @@ +# Contributor: Rasmus Thomsen <oss@cogitri.dev> +# Maintainer: Rasmus Thomsen <oss@cogitri.dev> +pkgname=folks +pkgver=0.12.1 +pkgrel=0 +pkgdesc="GObject Library to aggregate people into metacontacts" +url="https://wiki.gnome.org/Projects/Folks" +arch="all !armhf" # limited by tracker +license="LGPL-2.1-or-later" +makedepends=" + evolution-data-server-dev + gobject-introspection-dev + libgee-dev + meson + py3-setuptools + telepathy-glib-dev + tracker-dev + vala + python2 + readline-dev" +options="!check" # Can only be run against installed instance +subpackages="$pkgname-dev $pkgname-lang" +source="https://download.gnome.org/sources/folks/${pkgver%.*}/folks-$pkgver.tar.xz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + meson \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --buildtype=release \ + -Ddocs=true \ + . output + ninja -C output +} + +check() { + ninja -C output test +} + +package() { + DESTDIR="$pkgdir" ninja -C output install +} + +sha512sums="f60e993508137b33602ccc814bde45ad780d61afb0566f8175fd01b3dcaa5f5771e11d98156c4ecfd85f920a7adc140a5b2582eaaa97568b8fb3b3761668decb folks-0.12.1.tar.xz" |