summaryrefslogtreecommitdiff
path: root/pcr/owncloud-client/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/owncloud-client/PKGBUILD')
-rw-r--r--pcr/owncloud-client/PKGBUILD60
1 files changed, 0 insertions, 60 deletions
diff --git a/pcr/owncloud-client/PKGBUILD b/pcr/owncloud-client/PKGBUILD
deleted file mode 100644
index a28aae986..000000000
--- a/pcr/owncloud-client/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# Maintainer: 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"
-
-##############################################################
-
-_name=mirall
-pkgname=owncloud-client
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="ownCloud client based on mirall"
-arch=('i686' 'x86_64')
-url="http://owncloud.org/"
-license=('GPL2')
-depends=('qt4' 'ocsync' 'qtkeychain' 'qtwebkit')
-makedepends=('cmake')
-provides=('mirall' 'owncloud-client')
-conflicts=('mirall-git')
-install=owncloud-client.install
-backup=('etc/ownCloud/sync-exclude.lst')
-source=("http://download.owncloud.com/download/${_name}-${pkgver}.tar.bz2")
-md5sums=('089a9df66f31d6915a60e48ca4a027a8')
-
-
-if [[ ! ${_buildtype} == "Release" ]] && [[ ! ${_buildtype} == "release" ]]; then
- options=(!strip)
-fi
-
-prepare() {
- if [[ -e ${srcdir}/${_name}-${pkgver}-build ]]; then rm -rf ${srcdir}/${_name}-${pkgver}-build; fi
- mkdir ${srcdir}/${_name}-${pkgver}-build
-}
-
-build() {
- cd ${srcdir}/${_name}-${pkgver}-build
-
- cmake -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=/usr/lib \
- -DCMAKE_BUILD_TYPE=${_buildtype} \
- -DCSYNC_INCLUDE_PATH=/usr/include/ocsync \
- -DCMAKE_INSTALL_SYSCONFDIR=/etc/${pkgname} \
- ../${_name}-${pkgver}
- make
-}
-
-package() {
- cd ${srcdir}/${_name}-${pkgver}-build
- make DESTDIR=${pkgdir} install
-}