summarylogtreecommitdiffstats
path: root/proton.install
diff options
context:
space:
mode:
authorStelios Tsampas2022-10-26 18:55:37 +0300
committerStelios Tsampas2022-10-26 18:55:37 +0300
commit0cc6aa5a65f8217d56bd603baae6aa988d27884c (patch)
tree83e0003ceb3fb6394e7d5f412a40971180a65363 /proton.install
parentf6768724e6f36b8286ac4e4a4a0e4dafe8b8fb85 (diff)
downloadaur-0cc6aa5a65f8217d56bd603baae6aa988d27884c.tar.gz
Add post-install information message
Diffstat (limited to 'proton.install')
-rw-r--r--proton.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/proton.install b/proton.install
new file mode 100644
index 000000000000..e5f8eab85ad5
--- /dev/null
+++ b/proton.install
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+post_install() {
+ echo ":: This package, due to the way it is build and packaged is officialy UNSUPPORTED"
+ echo " by Valve. Please do not bother them if something doesn't run with it."
+ echo " If something does NOT run with this package, but DOES run with the same official"
+ echo " version, installed according to upstream instructions, feel free to report it through"
+ echo " the AUR comment section."
+ echo " "
+ echo " This version of Proton is meant to be used with `steam-native` from the"
+ echo " `steam-native-rutime` package on Arch Linux"
+}
+
+post_upgrade() {
+ post_install
+}