diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template index 5434a260f5..aaaa748cb6 100644 --- a/srcpkgs/buildbot/template +++ b/srcpkgs/buildbot/template @@ -1,6 +1,7 @@ # Template file for 'buildbot' pkgname=buildbot version=0.8.3 +revision=1 distfiles="http://buildbot.googlecode.com/files/$pkgname-$version.tar.gz" build_style=python-module short_desc="A system to automate the compile/test cycle" @@ -23,3 +24,12 @@ noarch=yes Add_dependency full python Add_dependency full python-jinja Add_dependency full Twisted + +post_install() +{ + # Install all contrib modules. + local contribdir=${DESTDIR}/usr/share/buildbot/contrib + + install -d ${contribdir} + install -m 755 ${wrksrc}/contrib/*.py ${contribdir} +}