From 156092d7336041491f2ba625dc2579b6801ea1f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 29 Aug 2014 02:22:00 -0300 Subject: owncloud-client-1.6.2-2: updating version --- pcr/owncloud-client/PKGBUILD | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) (limited to 'pcr/owncloud-client/PKGBUILD') 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 +# Maintainer (Arch): Kuba Serafinowski # https://github.com/zizzfizzix/pkgbuilds # Maintainer: Jorge Araya Navarro -# + ############################################################## #### 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() { -- cgit v1.2.3-2-g168b