summaryrefslogtreecommitdiff
path: root/community/libopensync
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/libopensync
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/libopensync')
-rw-r--r--community/libopensync/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/community/libopensync/PKGBUILD b/community/libopensync/PKGBUILD
deleted file mode 100644
index bf1eed273..000000000
--- a/community/libopensync/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $
-# Maintainer: Sergej Pupykin
-# Contributor: Hauke Wesselmann <hauke@h-dawg.de>
-# Contributor: Laurie Clark-Michalek <bluepeppers@archlinux.us>
-
-pkgname=libopensync
-pkgver=0.39
-pkgrel=4
-pkgdesc='Stable version of the opensync synchronisation framework'
-url='http://www.opensync.org'
-license=('LGPL')
-arch=('i686' 'x86_64')
-makedepends=('python2' 'cmake' 'chrpath')
-depends=('glib2' 'libxml2' 'sqlite3' 'libxslt')
-options=('!libtool')
-source=(http://www.opensync.org/download/releases/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('733211e82b61e2aa575d149dda17d475')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
-
- #disable treating of warnings as errors
- find /$(pwd) -type f -exec sed -i 's/-Werror//g' '{}' \;
-
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr $srcdir/$pkgname-$pkgver
- make
- make DESTDIR=$pkgdir install
-
- find $pkgdir -name \*.so -type f -exec chrpath -d {} \;
- find $pkgdir -perm /ugo+x -type f -exec chrpath -d {} \;
-}