updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / qutim-protocol-msn-svn / PKGBUILD
blobcab6cd5cf8a7de08c8712ceb13efee6570e7620e
1 # Contributor: h31 <h31mail@yandex.com
2 pkgname=qutim-protocol-msn-svn
3 pkgver=5
4 pkgrel=1
5 pkgdesc="Adds support for the Windows Live Messenger (also knows as MSN) protocol to Qutim. SVN version"
6 arch=('i686' 'x86_64')
7 url="http://qutim.org"
8 license=('GPL')
9 depends=('qutim-svn' 'openssl')
10 makedepends=('subversion' 'gcc' 'make' 'cmake')
11 provides=('qutim-plugin-msn-svn')
12 conflicts=('qutim-plugin-msn-svn')
14 _svnmod=msn
15 _svntrunk=http://qutim.org/svn/$_svnmod
17 build() {
18 msg "Downloading from $_svntrunk ..."
19   cd $srcdir
20   if [ -d $_svnmod/.svn ]; then
21     (cd $_svnmod && svn up -r $pkgver)
22   else
23     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
24   fi
25   msg2 "SVN checkout done or server timeout"
27 msg "Creating temporary build directory..."
28   rm -rf $_svnmod-build
29   cp -r $_svnmod $_svnmod-build
30   cd $srcdir/$_svnmod-build
32 msg "Building and installing..."  
33   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release || return 1
34   make || return 1
35   make DESTDIR=${pkgdir} install || return 1
37 msg "Removing temporary files..."
38   rm -rf $_svnmod-build