PKGBUILDs/aur/owncloud/PKGBUILD

37 lines
1.3 KiB
Bash
Raw Normal View History

2012-04-15 17:02:27 +00:00
# Maintainer: Antonio Rojas <nqn1976 @ gmail.com>
2011-05-17 21:54:33 +00:00
# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
2013-04-11 21:42:34 +00:00
# ALARM Maintainer: Tommaso Sardelli <lacapannadelloziotom [at] gmail [dot] com>
2013-02-21 01:52:13 +00:00
2011-05-17 21:54:33 +00:00
pkgname=owncloud
2013-06-06 17:34:28 +00:00
pkgver=5.0.7
2012-07-24 03:25:50 +00:00
pkgrel=1
2011-05-17 21:54:33 +00:00
pkgdesc="A cloud server to store your files centrally on a hardware controlled by you"
2012-04-15 17:02:27 +00:00
arch=('any')
2011-12-07 21:42:15 +00:00
url="http://owncloud.org/"
2011-05-17 21:54:33 +00:00
license=('GPL')
2013-01-24 22:45:03 +00:00
depends=('php-gd' 'php-intl')
2013-04-03 14:42:06 +00:00
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")
2011-05-17 21:54:33 +00:00
makedepends=()
2013-03-15 19:42:13 +00:00
source=("http://download.owncloud.org/community/$pkgname-$pkgver.tar.bz2" 'owncloud.conf')
2012-06-23 01:59:53 +00:00
backup=('etc/httpd/conf/extra/owncloud.conf')
2011-05-17 21:54:33 +00:00
install=owncloud.install
2013-06-06 17:34:28 +00:00
md5sums=('102261ce3772f4a875135997045542fc'
2013-03-17 09:20:22 +00:00
'12c893e4a6a2af4b085c592ded741eaf')
2011-05-17 21:54:33 +00:00
package() {
2012-06-23 01:59:53 +00:00
# install license
install -d $pkgdir/usr/share/licenses/$pkgname
cp $srcdir/$pkgname/COPYING-* $pkgdir/usr/share/licenses/$pkgname
2011-05-17 21:54:33 +00:00
# install project
2012-09-17 23:40:16 +00:00
install -d $pkgdir/usr/share/webapps/
cp -a $srcdir/$pkgname $pkgdir/usr/share/webapps/
chown -R http:http $pkgdir/usr/share/webapps/*
2011-05-17 21:54:33 +00:00
# install apache .conf file
2012-06-23 01:59:53 +00:00
install -d $pkgdir/etc/httpd/conf/extra
install -m 644 $srcdir/owncloud.conf $pkgdir/etc/httpd/conf/extra/
2011-05-17 21:54:33 +00:00
}