desktop/owncloud/PKGBUILD
2016-11-14 21:19:17 +01:00

69 lines
2.8 KiB
Bash

pkgname=owncloud
pkgver=9.1.2
pkgrel=1
pkgdesc="A cloud server to store your files centrally on a hardware controlled by you"
arch=('x86_64')
url="http://owncloud.org/"
license=('GPL')
depends=('php-gd' 'php-intl')
optdepends=('php-apache: to use the Apache web server'
'nginx: to use the nginx web server'
'php-sqlite: to use the SQLite database backend'
'php-pgsql: to use the PostgreSQL database backend'
'php-ldap: LDAP authentication'
'php-intl'
'php-apcu'
'php-xcache'
'mariadb: to use the MySQL database backend'
'smbclient: to mount SAMBA shares'
'php-mcrypt'
'php-imagick: file preview'
'ffmpeg: file preview'
'libreoffice-common: file preview')
categories=('network')
conflicts=('owncloud-git')
screenshot=(http://karlitschek.de/wp-content/uploads/2014/07/oc7.jpg)
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/core/archive/v$pkgver.tar.gz"
"$pkgname-3rdparty-$pkgver.tar.gz::https://github.com/owncloud/3rdparty/archive/v$pkgver.tar.gz"
'owncloud.conf')
options=('!strip')
install=owncloud.install
sha256sums=('180c31e2b2f8a2f5fd6f288d65cf8bec09546375cecc0ef2aa5d213a67e96d51'
'614a46ec0637550906d876dc74fed2c3c5d858c253493f8cb2901fae02de2f25'
'1e9252f266cfa27af5bcb573b2fe932ce0d1578722ddc47431de9e92a65bd16c')
prepare() {
cd $srcdir/core-$pkgver
#sed -i "s|'appstoreenabled'.*|'appstoreenabled' => false,|" config/config.sample.php
rm -rf $srcdir/core-$pkgver/3rdparty
mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
}
package() {
cd $srcdir/core-$pkgver
# install license
install -d ${pkgdir}/usr/share/licenses/${pkgname}
cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
# install project
install -d ${pkgdir}/usr/share/webapps/
cp -a ${srcdir}/core-$pkgver ${pkgdir}/usr/share/webapps/${pkgname}
rm -rf ${pkgdir}/usr/share/webapps/${pkgname}/tests
# install apache config file
install -d ${pkgdir}/usr/share/webapps/${pkgname}
install -m 644 ${srcdir}/owncloud.conf ${pkgdir}/usr/share/webapps/${pkgname}
# move config to /etc
# mv ${pkgdir}/usr/share/webapps/owncloud/config ${pkgdir}/etc/webapps/${pkgname}/config
# chown -R http:http ${pkgdir}/etc/webapps/${pkgname}
# ln -s /etc/webapps/${pkgname}/config ${pkgdir}/usr/share/webapps/owncloud/config
# chown -R root:http ${pkgdir}/usr/share/webapps/${pkgname}
find ${pkgdir}/usr/share/webapps/owncloud -type f -exec chmod 0644 {} \;
find ${pkgdir}/usr/share/webapps/owncloud -type d -exec chmod 0755 {} \;
# find ${pkgdir}/etc/webapps/owncloud -type f -print0 | xargs -0 chmod 0640
# find ${pkgdir}/etc/webapps/owncloud -type d -print0 | xargs -0 chmod 0750
}