summaryrefslogtreecommitdiff
path: root/pcr/owncloud
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-12-18 11:58:30 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-12-18 11:58:30 -0200
commite28c22b3aa33f1243d096dfd3b7da6ce7760a144 (patch)
tree3306d7a3261092a14fadaa5eebe1254069ed7f5b /pcr/owncloud
parent3605270bdc98b3d4ac973eead454c2dcd6d24072 (diff)
downloadabslibre-e28c22b3aa33f1243d096dfd3b7da6ce7760a144.tar.gz
abslibre-e28c22b3aa33f1243d096dfd3b7da6ce7760a144.tar.bz2
abslibre-e28c22b3aa33f1243d096dfd3b7da6ce7760a144.zip
remove packages that has been released as Arch official package
Diffstat (limited to 'pcr/owncloud')
-rw-r--r--pcr/owncloud/PKGBUILD36
-rw-r--r--pcr/owncloud/owncloud.conf17
-rw-r--r--pcr/owncloud/owncloud.install12
3 files changed, 0 insertions, 65 deletions
diff --git a/pcr/owncloud/PKGBUILD b/pcr/owncloud/PKGBUILD
deleted file mode 100644
index 1369d4b0f..000000000
--- a/pcr/owncloud/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Maintainer (Arch): Antonio Rojas <nqn1976 @ gmail.com>
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=5.0.4
-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")
-makedepends=()
-source=("http://download.owncloud.org/community/$pkgname-$pkgver.tar.bz2" 'owncloud.conf')
-backup=('etc/httpd/conf/extra/owncloud.conf')
-install=owncloud.install
-md5sums=('311c299b4aff4987a4b4c39aedafa9c0'
- 'c1d49a3c0d8433bed6bffcd21ebb0064')
-
-package() {
-# install license
- install -d $pkgdir/usr/share/licenses/$pkgname
- cp $srcdir/$pkgname/COPYING-* $pkgdir/usr/share/licenses/$pkgname
-
-# install project
- install -d $pkgdir/usr/share/webapps/
- cp -a $srcdir/$pkgname $pkgdir/usr/share/webapps/
- chown -R http:http $pkgdir/usr/share/webapps/*
-
-# install apache .conf file
- install -d $pkgdir/etc/httpd/conf/extra
- install -m 644 $srcdir/owncloud.conf $pkgdir/etc/httpd/conf/extra/
-}
-
-
-
diff --git a/pcr/owncloud/owncloud.conf b/pcr/owncloud/owncloud.conf
deleted file mode 100644
index 5f050f134..000000000
--- a/pcr/owncloud/owncloud.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-<IfModule mod_alias.c>
-Alias /owncloud /usr/share/webapps/owncloud/
-</IfModule>
-<Directory /usr/share/webapps/owncloud/>
- Options FollowSymlinks
- Order allow,deny
- AllowOverride all
- allow from all
- php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/"
-</Directory>
-<VirtualHost *:80>
- ServerAdmin foo@foofarm.com
- DocumentRoot /usr/share/webapps/owncloud
- ServerName owncloud.foo.com
- ErrorLog logs/owncloud.foo.info-error_log
- CustomLog logs/owncloud.foo.info-access_log common
-</VirtualHost> \ No newline at end of file
diff --git a/pcr/owncloud/owncloud.install b/pcr/owncloud/owncloud.install
deleted file mode 100644
index cde521d4b..000000000
--- a/pcr/owncloud/owncloud.install
+++ /dev/null
@@ -1,12 +0,0 @@
-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 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 "in /etc/php/php.ini"
-}