summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
-rw-r--r--wootility-appimage.install9
3 files changed, 13 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 91f235d8d2c5..2fa7c2c401ee 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = wootility-appimage
pkgdesc = Utility for configuring Wooting keyboards (binary AppImage version)
pkgver = 3.3.1
- pkgrel = 2
+ pkgrel = 3
url = https://wooting.io/wootility
+ install = wootility-appimage.install
arch = x86_64
license = unknown
makedepends = p7zip
- optdepends = no-appimage-desktop-integration: Stop AppImage system integration dialogue
provides = wootility
conflicts = wootility
noextract = wootility-3.3.1-x86_64.AppImage
diff --git a/PKGBUILD b/PKGBUILD
index 6de4bc2cea61..892667857d0d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,17 +2,17 @@
_pkgname=wootility
pkgname=${_pkgname}-appimage
pkgver=3.3.1
-pkgrel=2
+pkgrel=3
pkgdesc='Utility for configuring Wooting keyboards (binary AppImage version)'
arch=('x86_64')
url='https://wooting.io/wootility'
license=('unknown')
makedepends=('p7zip')
-optdepends=('no-appimage-desktop-integration: Stop AppImage system integration dialogue')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
options=(!strip)
_appimage="${_pkgname}-${pkgver}-x86_64.AppImage"
+install=$pkgname.install
source=("https://s3.eu-west-2.amazonaws.com/wooting-update/wootility-linux-latest/${_appimage}"
'70-wooting.rules')
noextract=("${_appimage}")
diff --git a/wootility-appimage.install b/wootility-appimage.install
new file mode 100644
index 000000000000..176cdfd00da6
--- /dev/null
+++ b/wootility-appimage.install
@@ -0,0 +1,9 @@
+post_install() {
+ echo 'NOTE: To turn off the “Would you like to integrate ….AppImage with your system?”'
+ echo 'NOTE: notifications on every launch of Wootility, see:'
+ echo 'NOTE: https://github.com/AppImage/AppImageSpec/blob/master/draft.md#desktop-integration'
+}
+
+post_upgrade() {
+ post_install
+}