summaryrefslogtreecommitdiff
path: root/pcr/owncloud-client/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-08-29 02:22:00 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-08-29 02:22:00 -0300
commit156092d7336041491f2ba625dc2579b6801ea1f4 (patch)
treed7ce8a51265c216f552df4637748093c978411cf /pcr/owncloud-client/PKGBUILD
parentea3a0ba0097a8f03c83e86d88a7fadcac82997cc (diff)
owncloud-client-1.6.2-2: updating version
Diffstat (limited to 'pcr/owncloud-client/PKGBUILD')
-rw-r--r--pcr/owncloud-client/PKGBUILD38
1 files changed, 22 insertions, 16 deletions
diff --git a/pcr/owncloud-client/PKGBUILD b/pcr/owncloud-client/PKGBUILD
index 594d3ec20..32b344f79 100644
--- a/pcr/owncloud-client/PKGBUILD
+++ b/pcr/owncloud-client/PKGBUILD
@@ -1,14 +1,13 @@
-# Maintainer: Kuba Serafinowski <zizzfizzix(at)gmail(dot)com>
+# Maintainer (Arch): Kuba Serafinowski <zizzfizzix(at)gmail(dot)com>
# https://github.com/zizzfizzix/pkgbuilds
# Maintainer: Jorge Araya Navarro <shackra@riseup.net>
-#
+
##############################################################
#### The section below can be adjusted to suit your needs ####
##############################################################
# What type of build do you want?
# See http://techbase.kde.org/Development/CMake/Addons_for_KDE#Buildtypes to check what is supported.
-# Default is RelWithDebInfo to help with debugging.
_buildtype='Release'
@@ -16,41 +15,48 @@ _buildtype='Release'
_name=mirall
pkgname=owncloud-client
-pkgver=1.5.1
-pkgrel=3
+pkgver=1.6.2
+pkgrel=2
pkgdesc='ownCloud client based on mirall'
-arch=('i686' 'x86_64' 'armv7h')
+arch=('i686' 'x86_64' 'mips64el')
url='http://owncloud.org/'
license=('GPL2')
-depends=('qt4' 'qtkeychain' 'qtwebkit')
-makedepends=('cmake')
-provides=('mirall' 'owncloud-client' 'ocsync')
-conflicts=('mirall-git')
+depends=('qtkeychain' 'qtwebkit' 'neon')
+makedepends=('cmake' 'python-sphinx')
+provides=('mirall' 'ocsync')
+conflicts=('mirall-git' 'ocsync')
install=owncloud-client.install
backup=('etc/ownCloud/sync-exclude.lst')
-source=("http://download.owncloud.com/desktop/stable/${_name}-${pkgver}.tar.bz2")
-sha256sums=('79c41f8c72c994ab803b7053a1c7e0a46bbd20c25c1eed900e1c98433745daee')
+source=("https://download.owncloud.com/desktop/stable/${_name}-${pkgver}.tar.bz2"
+ "https://download.owncloud.com/desktop/stable/${_name}-${pkgver}.tar.bz2.asc"
+ 'man.patch')
+md5sums=('52518b622e9b2c151e64a4b56bcf2414'
+ 'SKIP'
+ '4e252cf4df3276c3dadf45232b4e17a2')
if [[ ! ${_buildtype} == 'Release' ]] && [[ ! ${_buildtype} == 'release' ]]; then
- options=(!strip)
+ options=('debug')
fi
prepare() {
if [[ -e ${srcdir}/${_name}-${pkgver}-build ]]; then rm -rf ${srcdir}/${_name}-${pkgver}-build; fi
mkdir ${srcdir}/${_name}-${pkgver}-build
+
+ cd ${srcdir}/${_name}-${pkgver}
+ patch -p0 -i ${srcdir}/man.patch
}
build() {
cd ${srcdir}/${_name}-${pkgver}-build
- cmake -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+ cmake -DBUILD_WITH_QT4=on \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+ -DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=${_buildtype} \
- -DCSYNC_INCLUDE_PATH=/usr/include/ocsync \
-DCMAKE_INSTALL_SYSCONFDIR=/etc/${pkgname} \
../${_name}-${pkgver}
make
+ make doc-man
}
package() {