summaryrefslogtreecommitdiff
path: root/pcr/ocsync/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/ocsync/PKGBUILD')
-rw-r--r--pcr/ocsync/PKGBUILD53
1 files changed, 0 insertions, 53 deletions
diff --git a/pcr/ocsync/PKGBUILD b/pcr/ocsync/PKGBUILD
deleted file mode 100644
index 8da91f41d..000000000
--- a/pcr/ocsync/PKGBUILD
+++ /dev/null
@@ -1,53 +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"
-
-##############################################################
-
-pkgname=ocsync
-pkgver=0.90.4
-pkgrel=1
-pkgdesc="A file synchronizer especially designed for you, the normal user. Dependency of owncloud-client."
-arch=("i686" "x86_64")
-url="http://www.csync.org"
-license=('GPL2')
-depends=('sqlite3' 'iniparser' 'neon' 'libssh')
-makedepends=('cmake')
-provides=('csync' 'csync-owncloud')
-conflicts=('csync' 'csync-owncloud')
-backup=('etc/ocsync/ocsync.conf' 'etc/ocsync/ocsync_exclude.conf')
-source=("http://download.owncloud.com/download/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('4724730cf7376983c06bc83133c06a3f')
-
-if [[ ! ${_buildtype} == "Release" ]] && [[ ! ${_buildtype} == "release" ]]; then
- options=(!strip)
-fi
-
-prepare() {
- if [[ -e ${srcdir}/${pkgname}-${pkgver}-build ]]; then rm -rf ${srcdir}/${pkgname}-${pkgver}-build; fi
- mkdir ${srcdir}/${pkgname}-${pkgver}-build
-}
-
-build() {
- cd ${srcdir}/${pkgname}-${pkgver}-build
-
- cmake -DCMAKE_BUILD_TYPE=${_buildtype} \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DSYSCONF_INSTALL_DIR=/etc \
- ../${pkgname}-${pkgver}
- make
-}
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}-build
- make DESTDIR=${pkgdir} install
-}