The recipe should look something like this. Build it with "cvc cook wwwoffle.recipe" then install it as root by doing "conary update wwwoffle-2.8e.ccs".
class WWWOffle(AutoPackageRecipe): name = 'wwwoffle' version = '2.8e'
We don't support recommendations/suggestions in Conary currently. There are big plans for supporting all sorts of meta-information about a package in the repository. Currently we support summary, description, license, url, category, etc. Suggestions should probably go there at some point in the future.
3 Comments:
The recipe should look something like this. Build it with "cvc cook wwwoffle.recipe" then install it as root by doing "conary update wwwoffle-2.8e.ccs".
class WWWOffle(AutoPackageRecipe):
name = 'wwwoffle'
version = '2.8e'
buildRequires = [ 'flex:runtime', 'perl:runtime', 'zlib:devel' ]
def unpack(r):
r.addArchive('ftp://ftp.ibiblio.org/pub/Linux/apps/www/servers/wwwoffle-%(version)s.tgz')
def policy(r):
r.Move('/usr/doc', '%(thisdocdir)s')
I'll take a look at it.
Can I suggest some package in the recipe? Just like I would do in a .deb package?
Thanks a lot for the feedback.
We don't support recommendations/suggestions in Conary currently. There are big plans for supporting all sorts of meta-information about a package in the repository. Currently we support summary, description, license, url, category, etc. Suggestions should probably go there at some point in the future.
Post a Comment
Links to this post:
Create a Link
<< Home