summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Sarboni2015-07-17 16:47:24 +0200
committerThomas Sarboni2015-07-17 16:47:24 +0200
commit2321dffd927e460a106f08e4ac69fd8e702b5ddf (patch)
treef72501a55cbfa76c196db76aa36e67f18c875a36
parente27fe5e62eb9bb828f766d252c1e9282ef711bd4 (diff)
downloadaur-2321dffd927e460a106f08e4ac69fd8e702b5ddf.tar.gz
Correct an error in ampache.install
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--ampache.install21
3 files changed, 13 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0115654f66c3..90a788da98eb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ampache-git
pkgdesc = A PHP-based tool for managing and playing your audio/video files via a web interface
pkgver = 3.8.0.beta2.25.gf946a1c
- pkgrel = 2
+ pkgrel = 3
url = http://www.ampache.org/
install = ampache.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index be011ae97e60..1468dc246178 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=ampache-git
_gitname=ampache
pkgver=3.8.0.beta2.25.gf946a1c
-pkgrel=2
+pkgrel=3
pkgdesc="A PHP-based tool for managing and playing your audio/video files via a web interface"
arch=('i686' 'x86_64')
url="http://www.ampache.org/"
diff --git a/ampache.install b/ampache.install
index 76c49e54c2d7..1f5a3a5cb397 100644
--- a/ampache.install
+++ b/ampache.install
@@ -1,17 +1,18 @@
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
+ cat << EOF
+==> 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.
+EOF
/bin/true
}
post_upgrade() {
post_install
}
+post_install