Date: Wednesday, April 27, 2022 @ 23:21:32 Author: heftig Revision: 444168
1.0-1 Added: gnome-info-collect/trunk/PKGBUILD ----------+ PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) Added: PKGBUILD =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2022-04-27 23:21:32 UTC (rev 444168) @@ -0,0 +1,23 @@ +# Maintainer: Jan Alexander Steffens (heftig) <[email protected]> + +pkgname=gnome-info-collect +pkgver=1.0 +pkgrel=1 +pkgdesc="GNOME system and user data collection tool" +url="https://gitlab.gnome.org/vstanek/gnome-info-collect" +arch=(any) +license=(GPL3) +depends=(python-requests python-gobject gnome-online-accounts) +makedepends=(git) +_commit=a0f67581a5b5c63b299a8923f67e4e91dd133106 # tags/v1.0^0 +source=("git+https://gitlab.gnome.org/vstanek/gnome-info-collect.git#commit=$_commit") +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/^v//;s/[^-]*-g/r&/;s/-/+/g' +} + +package() { + install -D $pkgname/client/client.py "$pkgdir/usr/bin/$pkgname" +}
