Skip to content

gawel/gp.recipe.phantomjs

Repository files navigation

Buildout recipe to install phantomjs/casperjs

Supported options

The recipe supports the following options:

phantomjs-url

Url to download phantomjs

phantomjs-url-base

If phantomjs-url is not specified, this recipe downloads phantomjs from phantomjs-url-base. Defaults to https://bitbucket.org/ariya/phantomjs/downloads/. Set this if you want to use your own mirror for phantomjs.

phantomjs-url-template

If phantomjs-url and phantomjs-url-template are not specified, you can set a template which will populate various variables. The variables should be wrapped in {}, and the following values are supported:

  • arch: the architecture. x86_64 or i686
  • phantom_platform: the platform, following the format dictated by the standard phantomjs url (e.g. linux, macosx)
  • phantom_extension: the extension, as specified by the format dictated by the standard phantomjs url (e.g. tar.bz2, zip)
  • platform: the platform, which is one of: linux, darwin, or windows
  • version: the version of phantomjs

The default template is:

https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-{version}-{phantom_platform}.{phantom_extension}

phantomjs-version

Try to retreive phantomjs url from version

casperjs-url

Url to download casperjs

Example usage

We'll start by creating a buildout that uses the recipe:

>>> write('buildout.cfg',
... """
... [buildout]
... parts = casperjs
...
... [casperjs]
... recipe = gp.recipe.phantomjs
... """)

>>> system('buildout')

>>> ls('bin')
-  buildout
-  casperjs
-  phantomjs

About

DEPRECATED Use gp.recipe.node to install phantomjs

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages