updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / indicator-me-bzr / PKGBUILD
blobaa0da16af84f3f6d5f09a5bcbef8dd09e2f1c7f6
1 # Maintainer: Michal Gawronski <dinth1906@gmail.com>
2 # Maintainer: Paul Burton <paulburton89@gmail.com>
4 pkgname=indicator-me-bzr
5 pkgbranch=0.2
6 pkgver=95
7 pkgrel=1
8 pkgdesc="A menu in the menu bar that represents you, the user, and the things that represent you in the computer. (Canonical Ayatana Project)"
9 arch=('i686' 'x86_64')
10 url="https://launchpad.net/indicator-me"
11 license=('GPL')
12 depends=('libindicate' 'libdbusmenu' 'ido')
13 makedepends=('libindicator' 'bzr')
14 provides=('indicator-me')
15 conflicts=('indicator-me')
16 source=()
17 md5sums=()
19 _bzrbranch=lp:indicator-me
20 _bzrmod=indicator-me
22 build() {
23    cd ${srcdir}
25   msg "Connecting to the server...."
27   if [ ! -d ./${_bzrmod} ]; then
28     bzr co ${_bzrbranch} ${_bzrmod}
29   else
30     bzr up ${_bzrmod}
31   fi
33   msg "BZR checkout done or server timeout"
34   msg "Starting make..."
36   [ -d ./${_bzrmod}-build ] && rm -rf ./${_bzrmod}-build
37   cp -r ./${_bzrmod} ./${_bzrmod}-build
38   cd ./${_bzrmod}-build
40   ./autogen.sh || return 1
41   ./configure --disable-static --prefix=/usr || return 1
42   make || return 1
43   make DESTDIR="$pkgdir" install || return 1