diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-06 22:04:31 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-06 22:04:31 -0600 |
commit | 2967b22c6179ded9cc01496e10dcb0f292d0c182 (patch) | |
tree | 9219e7dc564f3dc8af29ea142c4b5d409ea74310 /pcr/ocsync/PKGBUILD | |
parent | 55677d14e4829d6a7859333d3560db346c228fdf (diff) | |
parent | e84010fb9a6f81d96d9c54661a7abde97a0eb187 (diff) | |
download | abslibre-2967b22c6179ded9cc01496e10dcb0f292d0c182.tar.gz abslibre-2967b22c6179ded9cc01496e10dcb0f292d0c182.tar.bz2 abslibre-2967b22c6179ded9cc01496e10dcb0f292d0c182.zip |
Merge branch 'master-remote' into master-undelete
Diffstat (limited to 'pcr/ocsync/PKGBUILD')
-rw-r--r-- | pcr/ocsync/PKGBUILD | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/pcr/ocsync/PKGBUILD b/pcr/ocsync/PKGBUILD index 34ce2f62c..97bc26754 100644 --- a/pcr/ocsync/PKGBUILD +++ b/pcr/ocsync/PKGBUILD @@ -1,6 +1,7 @@ # Maintainer: Kuba Serafinowski <zizzfizzix(at)gmail(dot)com> # https://github.com/zizzfizzix/pkgbuilds - +# Maintainer: Jorge Araya Navarro <jorgean@lavabit.com> +# ############################################################## #### The section below can be adjusted to suit your needs #### ############################################################## @@ -14,28 +15,31 @@ _buildtype="Release" ############################################################## pkgname=ocsync -pkgver=0.70.5 -pkgrel=1 -pkgdesc="A file synchronizer especially designed for you, the normal user." +pkgver=0.80.0 +pkgrel=3 +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' 'smbclient' 'libssh') +depends=('sqlite3' 'iniparser' 'neon') makedepends=('cmake') -#optdepends=('samba: smb support' 'libssh: sftp support') +optdepends=('libssh: sftp support') 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=('7c8b6f260cc53d29c4355f6837990329') +md5sums=('db46cdb4c710a607dfc062ed0a413b35') -# Clean options array to strip pkg if release buildtype is chosen -if [[ ${_buildtype} == "Release" ]] || [[ ${_buildtype} == "release" ]]; then - options=() +if [[ ! ${_buildtype} == "Release" ]] && [[ ! ${_buildtype} == "release" ]]; then + options=(!strip) fi -build() { +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} \ |