diff options
author | Jorge Araya Navarro <jorgean@lavabit.com> | 2014-02-14 13:26:00 -0600 |
---|---|---|
committer | Jorge Araya Navarro <jorgean@lavabit.com> | 2014-02-14 13:26:00 -0600 |
commit | 948e586debe4cabdc656d2e7fa7cb6ee2ed5b5e4 (patch) | |
tree | 61cfe90c814088b1b9b2c0b522f6d28f67594f6c | |
parent | 5422bb4047541e661efdcca620cb04863580a896 (diff) |
updating owncloud-client and ocsync
-rw-r--r-- | pcr/ocsync/PKGBUILD | 21 | ||||
-rw-r--r-- | pcr/owncloud-client/PKGBUILD | 17 |
2 files changed, 19 insertions, 19 deletions
diff --git a/pcr/ocsync/PKGBUILD b/pcr/ocsync/PKGBUILD index 8da91f41d..cc780cfbb 100644 --- a/pcr/ocsync/PKGBUILD +++ b/pcr/ocsync/PKGBUILD @@ -10,27 +10,27 @@ # 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" +_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" +pkgver=0.91.4 +pkgrel=2 +pkgdesc='A file synchronizer especially designed for you, the normal user. Dependency of owncloud-client.' +arch=('i686' 'x86_64' 'armv7h') +url='http://www.csync.org' license=('GPL2') depends=('sqlite3' 'iniparser' 'neon' 'libssh') makedepends=('cmake') provides=('csync' 'csync-owncloud') conflicts=('csync' 'csync-owncloud') +options=('staticlibs') backup=('etc/ocsync/ocsync.conf' 'etc/ocsync/ocsync_exclude.conf') -source=("http://download.owncloud.com/download/${pkgname}-${pkgver}.tar.bz2") -md5sums=('4724730cf7376983c06bc83133c06a3f') +source=("http://download.owncloud.com/desktop/stable/${pkgname}-${pkgver}.tar.bz2") -if [[ ! ${_buildtype} == "Release" ]] && [[ ! ${_buildtype} == "release" ]]; then - options=(!strip) +if [[ ! ${_buildtype} == 'Release' ]] && [[ ! ${_buildtype} == 'release' ]]; then + options+=('debug') fi prepare() { @@ -51,3 +51,4 @@ package() { cd ${srcdir}/${pkgname}-${pkgver}-build make DESTDIR=${pkgdir} install } +sha256sums=('9ce5d04ff0475be4c3d3bfff43a554980d88277e95de4128a3f18611529b2cb6') diff --git a/pcr/owncloud-client/PKGBUILD b/pcr/owncloud-client/PKGBUILD index a28aae986..2e1e82c15 100644 --- a/pcr/owncloud-client/PKGBUILD +++ b/pcr/owncloud-client/PKGBUILD @@ -10,17 +10,17 @@ # 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" +_buildtype='Release' ############################################################## _name=mirall pkgname=owncloud-client -pkgver=1.4.2 +pkgver=1.5.1 pkgrel=1 -pkgdesc="ownCloud client based on mirall" -arch=('i686' 'x86_64') -url="http://owncloud.org/" +pkgdesc='ownCloud client based on mirall' +arch=('i686' 'x86_64' 'armv7h') +url='http://owncloud.org/' license=('GPL2') depends=('qt4' 'ocsync' 'qtkeychain' 'qtwebkit') makedepends=('cmake') @@ -28,11 +28,9 @@ 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') +source=("http://download.owncloud.com/desktop/stable/${_name}-${pkgver}.tar.bz2") - -if [[ ! ${_buildtype} == "Release" ]] && [[ ! ${_buildtype} == "release" ]]; then +if [[ ! ${_buildtype} == 'Release' ]] && [[ ! ${_buildtype} == 'release' ]]; then options=(!strip) fi @@ -58,3 +56,4 @@ package() { cd ${srcdir}/${_name}-${pkgver}-build make DESTDIR=${pkgdir} install } +sha256sums=('79c41f8c72c994ab803b7053a1c7e0a46bbd20c25c1eed900e1c98433745daee') |