PKGBUILDs/aur/owncloud/owncloud.install
2012-09-17 23:40:16 +00:00

17 lines
626 B
Plaintext

pkgname=ownCloud
post_install() {
echo "Add the following lines into /etc/httpd/conf/httpd.conf:"
echo "Include /etc/httpd/conf/extra/owncloud.conf"
echo "LoadModule php5_module modules/libphp5.so"
echo "Include conf/extra/php5_module.conf"
echo
echo "Uncomment extensions xmlrpc.so zip.so gd.so"
echo "and either pdo_sqlite.so sqlite3.so (for the SQLite backend) or mysql.so mysqli.so pdo_mysql.so (for the MySQL backend)"
echo "in /etc/php/php.ini"
}
post_upgrade() {
echo "owncloud is now installed in /usr/share/webapps/owncloud"
echo "if you want it in /srv/http, add a symlink manually"
}