diff options
author | renyuneyun (Rui Zhao) | 2021-04-21 22:54:26 +0100 |
---|---|---|
committer | renyuneyun (Rui Zhao) | 2021-04-21 22:54:26 +0100 |
commit | add36ae0625ccb828937d1880154793324ba12e5 (patch) | |
tree | 8316457baa1714124e54ea4f74e107a0b7d87883 | |
download | aur-add36ae0625ccb828937d1880154793324ba12e5.tar.gz |
Add feedreader-decsync-git
-rw-r--r-- | .SRCINFO | 22 | ||||
-rw-r--r-- | PKGBUILD | 26 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..edc0d81eed9e --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,22 @@ +pkgbase = feedreader-decsync-git + pkgdesc = This is a fork of the archived jangernert/FeedReader, a modern desktop application designed to complement existing web-based RSS accounts, but with an updated DecSync plugin. + pkgver = 2.11.0.20200923.6b91326 + pkgrel = 1 + url = https://github.com/39aldo39/FeedReader + arch = any + license = MIT + makedepends = gobject-introspection + makedepends = meson + makedepends = vala + depends = curl + depends = org.freedesktop.secrets + depends = gnome-online-accounts + depends = gumbo-parser + depends = libgee + depends = libpeas + depends = libdecsync + source = git+https://github.com/39aldo39/FeedReader.git + sha256sums = SKIP + +pkgname = feedreader-decsync-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..dc964576de61 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: renyuneyun (Rui ZHAO) <renyuneyun@gmail.com> + +pkgname=feedreader-decsync-git +pkgver=2.11.0.20200923.6b91326 +pkgrel=1 +pkgdesc="This is a fork of the archived jangernert/FeedReader, a modern desktop application designed to complement existing web-based RSS accounts, but with an updated DecSync plugin." +arch=('any') +url="https://github.com/39aldo39/FeedReader" +license=('MIT') +depends=('curl' 'org.freedesktop.secrets' 'gnome-online-accounts' 'gumbo-parser' 'libgee' 'libpeas' 'libdecsync') +makedepends=('gobject-introspection' 'meson' 'vala') +source=("git+https://github.com/39aldo39/FeedReader.git") +sha256sums=('SKIP') + +build() { + arch-meson FeedReader build + meson compile -C build +} + +check() { + meson test -C build --print-errorlogs +} + +package() { + DESTDIR="$pkgdir" meson install -C build +} |