summarylogtreecommitdiffstats
path: root/ampache.install
diff options
context:
space:
mode:
Diffstat (limited to 'ampache.install')
-rw-r--r--ampache.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/ampache.install b/ampache.install
new file mode 100644
index 000000000000..0495a081783d
--- /dev/null
+++ b/ampache.install
@@ -0,0 +1,17 @@
+post_install() {
+ cat <<-EndOfMessage
+ ==> If you want to use Ampache's transcoding and/or downsampling you'll
+ need the packages specified in optdepends.
+ Check out http://wiki.archlinux.org/index.php/Ampache and
+ https://github.com/ampache/ampache/wiki/Transcoding for more info.
+ ==> Please enable curl and pdo_mysql modules in php.ini.
+ ==> Database will be upgraded automatically in case of update from 3.7.
+ Check out https://github.com/ampache/ampache/wiki/Installation for
+ more info about installation process.
+ EndOfMessage
+ /bin/true
+}
+
+post_upgrade() {
+ post_install
+}