Date: Friday, April 7, 2023 @ 10:24:40
Author: felixonmars
Revision: 1440977
archrelease: copy trunk to community-staging-any
Added:
gfeeds/repos/community-staging-any/
gfeeds/repos/community-staging-any/PKGBUILD
(from rev 1440976, gfeeds/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: gfeeds/repos/community-staging-any/PKGBUILD (from rev 1440976,
gfeeds/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 10:24:40 UTC (rev 1440977)
@@ -0,0 +1,26 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Gabriele Musco <[email protected]>
+
+pkgname=gfeeds
+pkgver=0.16.2
+pkgrel=5
+pkgdesc='RSS/Atom feed reader for GNOME'
+arch=('any')
+url='https://gfeeds.gabmus.org/'
+license=('GPL3')
+depends=('libhandy' 'python-beautifulsoup4' 'python-cssselect'
'python-dateutil'
+ 'python-feedparser' 'python-gobject' 'python-html5lib'
'python-listparser' 'python-lxml'
+ 'python-pillow' 'python-pygments' 'python-pytz'
'python-readability-lxml'
+ 'python-requests' 'webkit2gtk')
+makedepends=('meson' 'gobject-introspection')
+source=("https://gitlab.gnome.org/World/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('f061e89a1962a5ac544ea98239c2503af8da817ded0a5bfd8094ddf43e9dd00e')
+
+build() {
+ arch-meson $pkgname-$pkgver build
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}