diff options
author | Frederic Bezies | 2020-05-16 20:22:04 +0200 |
---|---|---|
committer | Frederic Bezies | 2020-05-16 20:22:04 +0200 |
commit | 8b3dbc0fee72102ff8cf272045b18a124510a020 (patch) | |
tree | 7331e692c409c9b77f5393c80f010d923540d87c | |
parent | 04f35e90caca5acf6502265ec4fd4f07d59a8bd0 (diff) | |
download | aur-8b3dbc0fee72102ff8cf272045b18a124510a020.tar.gz |
fix empty list display on start bug, thanks to Papajoke for the code
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 2 | ||||
-rw-r--r-- | pamac.install | 6 |
3 files changed, 8 insertions, 2 deletions
@@ -1,7 +1,7 @@ pkgbase = pamac-aur-git pkgdesc = A Gtk3 frontend for libalpm - git version pkgver = 9.5.1.r0.gbb9c219 - pkgrel = 1 + pkgrel = 2 url = https://gitlab.manjaro.org/applications/pamac arch = i686 arch = pentium4 @@ -6,7 +6,7 @@ pkgname=('pamac-aur-git' 'pamac-aur-tray-appindicator-git') _pkgname=pamac pkgver=9.5.1.r0.gbb9c219 _pkgver=9.5.1 -pkgrel=1 +pkgrel=2 pkgdesc="A Gtk3 frontend for libalpm - git version" arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://gitlab.manjaro.org/applications/pamac" diff --git a/pamac.install b/pamac.install index 73560594488..66e973fef59 100644 --- a/pamac.install +++ b/pamac.install @@ -10,6 +10,12 @@ post_install() { printf ' for other desktop environments.\n' } +post-update { + zcat /usr/share/app-info/xmls/community.xml.gz | sed 's|<em>||g;s|<\/em>||g;' | gzip > "new.xml.gz" + cp new.xml.gz /usr/share/app-info/xmls/community.xml.gz + appstreamcli refresh-cache --force +} + post_remove() { # disable systemd timers rm -f /etc/systemd/system/multi-user.target.wants/pamac-cleancache.timer |