ó
@K7]c           @   s(   d  Z  d „  Z d d „ Z d „  Z d S(   s½   This file is an example of the structure that any add-on module for a new language should have.

You can have structure beyond this, but this is a minimum of what conda-build will look for.c         C   s
   |  d k S(   su   This is a simple function returning True/False for if a requested package string exists
    in the add-on repository.t   frank(    (   t   package_name(    (    sF   lib/python2.7/site-packages/conda_build/skeletons/_example_skeleton.pyt   package_exists   s    t   .c         C   s   |  GH| GHd S(   s¿   This is the main work function that coordinates retrieval of the foreign recipe and outputs
    the conda recipe skeleton.

    Arguments here should match the arguments for the parser below.N(    (   t   packagest
   output_dir(    (    sF   lib/python2.7/site-packages/conda_build/skeletons/_example_skeleton.pyt   skeletonize   s    c         C   s2   |  j  d d d ƒ} | j d d d d d ƒd S(	   s•   Adds a parser entry so that your addition shows up as

    conda skeleton my_repo

    And also provides the arguments that your parser accepts.
    t   my_repot   helpsG   
    Create recipe skeleton for packages hosted on my-repo.org
        R   t   nargst   +s0   my-repo packages to create recipe skeletons for.N(   t
   add_parsert   add_argumentt   None(   t   reposR   (    (    sF   lib/python2.7/site-packages/conda_build/skeletons/_example_skeleton.pyR      s    	N(   t   __doc__R   R   R   (    (    (    sF   lib/python2.7/site-packages/conda_build/skeletons/_example_skeleton.pyt   <module>   s   		