summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoan Figueras2017-02-09 11:53:05 +0100
committerJoan Figueras2017-02-09 11:53:05 +0100
commit27f3bacdb759bb3f4e3c859ed57a5406edbb748d (patch)
treef35eeecaee9199b0230daa946e90c421a17d7d9e
parentff38a9f8412843e3362679d75be97e6fa73d2687 (diff)
downloadaur-27f3bacdb759bb3f4e3c859ed57a5406edbb748d.tar.gz
Added a post_upgrade message
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD3
-rw-r--r--guacamole.install5
3 files changed, 8 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 733d5e903221..6b1ea2b117bc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,6 +3,7 @@ pkgbase = guacamole-server
pkgver = 0.9.11
pkgrel = 1
url = http://guacamole.sourceforge.net/
+ install = guacamole.install
arch = i686
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 9453a17ba292..7f2046178db2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,7 +16,8 @@ optdepends=('libssh: for ssh protocol support'
'libpulse: for pulseaudio support'
'libtelnet: for telnet protocol support'
)
-
+install=guacamole.install
+
source=("http://downloads.sourceforge.net/project/guacamole/current/source/$pkgname-$pkgver-incubating.tar.gz" 'guacd.service')
md5sums=('b60b2fbf237844c74f796b8d02abe420'
diff --git a/guacamole.install b/guacamole.install
new file mode 100644
index 000000000000..86b7f512d0e1
--- /dev/null
+++ b/guacamole.install
@@ -0,0 +1,5 @@
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ echo -e "\n** Attention. Since version 0.9.10, webapp changed to guacamole-incubating\nChange your URI accordingly. **"
+}