updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / openobex-git / PKGBUILD
blob3ba65ad397399660c776f84ca78e23b793ef62bc
1 # Contributor: Borislav Gerassimov <borislav_ba@hotmail.com>
2 pkgname=openobex-git
3 pkgver=20081125
4 pkgrel=0.1
5 pkgdesc="Implementation of the Object Exchange (OBEX) protocol; OBEX is a session protocol and can best be described as a binary HTTP protocol. "
6 arch=('i686' 'x86_64')
7 license=('GPL' 'LGPL')
8 url="http://openobex.triq.net/"
9 #depends=('bluez>=4.1')
10 makedepends=('gcc' 'cmake' 'make')
11 conflicts=('openobex')
12 provides=('openobex')
13 options=('!libtool')
14 source=()
15 md5sums=()
17 _gitroot="git://git.kernel.org/pub/scm/bluetooth/openobex.git"
18 _gitname="openobex"
19 build() {
20   cd ${srcdir}
21   msg "Connecting to git.freedesktop.org GIT server...."
23   if [ -d ${srcdir}/${_gitname} ] ; then
24         cd ${_gitname} && git-pull origin
25         msg "The local files are updated."
26   else
27         git clone ${_gitroot}
28   fi
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
33   cp -r ${_gitname} ${_gitname}-build
34   cd ${_gitname}-build
35   mkdir build
36   cd build
37   
38   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE ..
40   make VERBOSE=1 || return 1
41   make DESTDIR=${startdir}/pkg install || return 1
42   
43   rm -rf ${srcdir}/${_gitname}-build