Package Details: moovida-plugins-bzr 1615-1

Package Base: moovida-plugins-bzr
Description: Plugins for the Moovida GUI framework.
Upstream URL: http://moovida.com/
Category: multimedia
Licenses: GPL
Submitter: jonkristian
Maintainer: None
Last Packager: None
Votes: 4
First Submitted: 2009-05-22 17:39
Last Updated: 2010-05-04 22:53

Dependencies (1)

Required by (0)

Sources

Latest Comments

Anonymous comment

2010-09-30 06:57

#This is a fixed moovida-plugins-bzr pkgbuild
# Contributor: Jon Kristian Nilsen <jokr.nilsen@gmail.com>

pkgname=moovida-plugins-bzr
pkgver=1615
pkgrel=1
pkgdesc="Plugins for the Moovida GUI framework."
url="http://moovida.com/"
arch=('i686' 'x86_64')
license=('GPL')

depends=('moovida-bzr')
makedepends=('bzr' 'setuptools')
replaces=('elisa-plugins' 'elisa-plugins-bzr')
options=('!libtool' '!makeflags')
provides=('moovida-plugins-bzr')

_bzrtrunk=lp:moovida
_bzrmod=moovida

build() {
cd ${srcdir}

msg "Connecting to the server...."

bzr branch ${_bzrtrunk} -q -r ${pkgver}

msg "BZR checkout done or server timeout"
msg "Starting make..."

[ -d ./${_bzrmod}-build ] && rm -rf ./${_bzrmod}-build
cp -r ./${_bzrmod} ./${_bzrmod}-build
}

package() {
cd ./${_bzrmod}-build/elisa-core
export PYTHONPATH=$PWD/elisa-core:$PWD/elisa-plugins:$PYTHONPATH

# Build moovida-plugins-good
python setup-bundle-plugins-good.py install --prefix=/usr --root=$startdir/pkg || return 1

# Build moovida-plugins-bad
python setup-bundle-plugins-bad.py install --prefix=/usr --root=$startdir/pkg || return 1

# Build moovida-plugins-ugly
python setup-bundle-plugins-ugly.py install --prefix=/usr --root=$startdir/pkg || return 1

rm -rf ${srcdir}/${_bzrmod}-build
}

# vim:set ts=2 sw=2 et: