1 # Maintainer: Michal Gawronski <dinth1906@gmail.com>
7 pkgdesc="Removes the headache of applications matching into a simple DBus daemon and c wrapper library. Currently features application matching at amazing levels of accuracy (covering nearly every corner case)."
9 url="https://launchpad.net/bamf"
11 depends=('indicator-application-bzr' 'gtk2-ubuntu' 'libgtop' 'libwnck')
24 msg "Connecting to the server...."
26 if [ ! -d ./${_bzrmod} ]; then
27 bzr co ${_bzrbranch} ${_bzrmod}
32 msg "BZR checkout done or server timeout"
33 msg "Starting make..."
35 [ -d ./${_bzrmod}-build ] && rm -rf ./${_bzrmod}-build
36 cp -r ./${_bzrmod} ./${_bzrmod}-build
39 ./autogen.sh || return 1
40 ./configure --disable-static --prefix=/usr || return 1
41 find . -name Makefile -exec sed -i 's/-Wall -Werror//g' {} \;
43 make DESTDIR="$pkgdir" install || return 1