desktop/owncloud/PKGBUILD

69 lines
2.8 KiB
Bash
Raw Normal View History

2014-12-24 08:13:38 +08:00
pkgname=owncloud
2016-11-15 04:19:17 +08:00
pkgver=9.1.2
2015-02-10 14:19:24 +08:00
pkgrel=1
2014-12-24 08:13:38 +08:00
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'
2015-04-28 07:46:24 +08:00
'php-ldap: LDAP authentication'
'php-intl'
2014-12-24 08:13:38 +08:00
'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')
2015-04-28 07:46:24 +08:00
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"
2014-12-24 08:13:38 +08:00
'owncloud.conf')
options=('!strip')
install=owncloud.install
2016-11-15 04:19:17 +08:00
sha256sums=('180c31e2b2f8a2f5fd6f288d65cf8bec09546375cecc0ef2aa5d213a67e96d51'
'614a46ec0637550906d876dc74fed2c3c5d858c253493f8cb2901fae02de2f25'
2016-03-21 02:59:57 +08:00
'1e9252f266cfa27af5bcb573b2fe932ce0d1578722ddc47431de9e92a65bd16c')
2014-12-24 08:13:38 +08:00
2015-04-28 07:46:24 +08:00
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
}
2014-12-24 08:13:38 +08:00
package() {
2015-04-28 07:46:24 +08:00
cd $srcdir/core-$pkgver
2014-12-24 08:13:38 +08:00
# install license
2015-03-11 07:41:34 +08:00
install -d ${pkgdir}/usr/share/licenses/${pkgname}
2015-04-28 07:46:24 +08:00
cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
2014-12-24 08:13:38 +08:00
# install project
2015-03-11 07:41:34 +08:00
install -d ${pkgdir}/usr/share/webapps/
2015-04-28 07:46:24 +08:00
cp -a ${srcdir}/core-$pkgver ${pkgdir}/usr/share/webapps/${pkgname}
rm -rf ${pkgdir}/usr/share/webapps/${pkgname}/tests
2014-12-24 08:13:38 +08:00
2015-03-11 07:41:34 +08:00
# install apache config file
2016-03-21 02:59:57 +08:00
install -d ${pkgdir}/usr/share/webapps/${pkgname}
install -m 644 ${srcdir}/owncloud.conf ${pkgdir}/usr/share/webapps/${pkgname}
2015-03-11 07:41:34 +08:00
# move config to /etc
2016-03-21 02:59:57 +08:00
# 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}
2015-03-11 07:41:34 +08:00
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
2014-12-24 08:13:38 +08:00
}