Merge pull request #523 from cippaciong/master

aur/owncloud to 5.0.9-1
This commit is contained in:
Mike Brown 2013-07-16 05:27:09 -07:00
commit f098d7a630
2 changed files with 4 additions and 4 deletions

View file

@ -4,19 +4,19 @@
# ALARM Maintainer: Tommaso Sardelli <lacapannadelloziotom [at] gmail [dot] com>
pkgname=owncloud
pkgver=5.0.8
pkgver=5.0.9
pkgrel=1
pkgdesc="A cloud server to store your files centrally on a hardware controlled by you"
arch=('any')
url="http://owncloud.org/"
license=('GPL')
depends=('php-gd' 'php-intl')
optdepends=("php-apache: to use the Apache web server" "php-sqlite: to use the SQLite database backend" "mariadb: to use the MySQL database backend" "smbclient: to mount SAMBA shares")
optdepends=("php-apache: to use the Apache web server" "php-sqlite: to use the SQLite database backend" "php-pgsql: to use the PostgreSQL database backend" "mariadb: to use the MySQL database backend" "smbclient: to mount SAMBA shares")
makedepends=()
source=("http://download.owncloud.org/community/$pkgname-$pkgver.tar.bz2" 'owncloud.conf')
backup=('etc/httpd/conf/extra/owncloud.conf')
install=owncloud.install
md5sums=('4a881f50201dc03304c52d0e189da289'
md5sums=('1ad9d51e2b355bc5243c84db97786b01'
'12c893e4a6a2af4b085c592ded741eaf')
package() {

View file

@ -7,6 +7,6 @@ post_install() {
echo "Include conf/extra/php5_module.conf"
echo
echo "Uncomment extensions gd.so intl.so iconv.so openssl.so xmlrpc.so zip.so"
echo "and either pdo_sqlite.so sqlite3.so (for the SQLite backend) or mysqli.so pdo_mysql.so (for the MySQL backend)"
echo "and either pdo_sqlite.so sqlite3.so (for the SQLite backend), pdo_pgsql.so pgsql.so (for the PostgreSQL backend) or mysqli.so pdo_mysql.so (for the MySQL backend)"
echo "in /etc/php/php.ini"
}