updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / qutim-plugin-yandexnarod-svn / PKGBUILD
blobf5f8bb22c7eec25808013873e88ec3edadc9a459
1 # Contributor: Borislav Gerassimov (slimmer) <borislavba (at) gmail.com>
2 pkgname=qutim-plugin-yandexnarod-svn
3 pkgver=20
4 pkgrel=1
5 pkgdesc="Yandex.Narod file tranfer support for Qutim. SVN version"
6 arch=('i686' 'x86_64')
7 url="http://qutim.org"
8 license=('GPL')
9 depends=('qutim')
10 makedepends=('subversion' 'gcc' 'make')
11 provides=('qutim-plugin-yandexnarod')
12 conflicts=('qutim-plugin-yandexnarod')
13 replaces=('qutim-plugin-yandexnarod')
15 _svnmod=qutim-yandexnarod
16 _svntrunk=https://boiler.co.ru/svn/$_svnmod
18 build() {
19 msg "Downloading from $_svntrunk ..."
20   cd $srcdir
21   if [ -d $_svnmod/.svn ]; then
22     (cd $_svnmod && svn up -r $pkgver)
23   else
24     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
25   fi
26   msg2 "SVN checkout done or server timeout"
28 msg "Creating temporary build directory..."
29   rm -rf $_svnmod-build
30   cp -r $_svnmod $_svnmod-build
31   cd $srcdir/$_svnmod-build
33 msg "Building and installing..."  
34   qmake || return 1
35   make || return 1
36   install -Dm 644 libyandexnarod.so \
37                   $pkgdir/usr/lib/qutim/libyandexnarod.so || return 1   
39 msg "Removing temporary files..."
40   rm -rf $_svnmod-build