Date: Saturday, October 9, 2021 @ 13:53:17 Author: kpcyrd Revision: 1029151
archrelease: copy trunk to community-any Added: gnome-shell-extension-appindicator/repos/community-any/PKGBUILD (from rev 1029150, gnome-shell-extension-appindicator/trunk/PKGBUILD) Deleted: gnome-shell-extension-appindicator/repos/community-any/PKGBUILD ----------+ PKGBUILD | 64 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2021-10-09 13:53:04 UTC (rev 1029150) +++ PKGBUILD 2021-10-09 13:53:17 UTC (rev 1029151) @@ -1,32 +0,0 @@ -# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org> - -pkgname=gnome-shell-extension-appindicator -pkgver=40 -pkgrel=2 -pkgdesc='AppIndicator/KStatusNotifierItem support for GNOME Shell' -url='https://github.com/ubuntu/gnome-shell-extension-appindicator' -arch=('any') -license=('GPL') -depends=('gnome-shell>=3.34') -makedepends=('zip') -optdepends=( - 'libappindicator-gtk2: support GTK+2 applications' - 'libappindicator-gtk3: support GTK+3 applications' -) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ubuntu/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('4ababf6ba4dbfd5af62e4539499c0e7a717d1873295733c36beb5396dbfaf7ed') - -build() { - cd "${pkgname}-${pkgver}" - make zip-file -} - -package() { - cd "${pkgname}-${pkgver}" - local dest="${pkgdir}/usr/share/gnome-shell/extensions/appindicatorsupp...@rgcjonas.gmail.com" - - install -d "${dest}" - bsdtar --no-same-owner -xvf build/appindicator-support.zip -C "${dest}" -} - -# vim: ts=2 sw=2 et: Copied: gnome-shell-extension-appindicator/repos/community-any/PKGBUILD (from rev 1029150, gnome-shell-extension-appindicator/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2021-10-09 13:53:17 UTC (rev 1029151) @@ -0,0 +1,32 @@ +# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org> + +pkgname=gnome-shell-extension-appindicator +pkgver=41 +pkgrel=1 +pkgdesc='AppIndicator/KStatusNotifierItem support for GNOME Shell' +url='https://github.com/ubuntu/gnome-shell-extension-appindicator' +arch=('any') +license=('GPL') +depends=('gnome-shell>=3.34') +makedepends=('meson' 'jq') +optdepends=( + 'libappindicator-gtk2: support GTK+2 applications' + 'libappindicator-gtk3: support GTK+3 applications' +) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ubuntu/${pkgname}/archive/v${pkgver}.tar.gz") +sha256sums=('8b6e2fe5c19a7b3c59739c75c2718ce4baa3e9b18ca17f1ceb257d38f3eb9d57') + +build() { + cd "${pkgname}-${pkgver}" + meson --prefix=/usr build/ + ninja -C build/ +} + +package() { + cd "${pkgname}-${pkgver}" + DESTDIR="${pkgdir}" ninja -C build/ install + # this file is generated at pkg install time + rm "${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled" +} + +# vim: ts=2 sw=2 et: