# A template you can use when filling in files for use by the
# addRecipes script. For example recipes, see 
# $PREFIX/share/pantry/examples/recipes
# ($PREFIX defaults to /usr/local).

# All ingredients must come from a collection; this specifies what
# collection that is.
SOURCE=master

# destination collections to which new recipe will be added
COLLECTIONS=( master quick )

# Traits for the new food. These come in pairs, with the
# name of the trait first and the value for the trait second. To
# leave a trait blank, do not include its name at all (thus here, if
# you do not want a value for the "group" trait, you must delete
# "group", or comment that line out.) Of course you are not limited
# to these four traits, but they're the most useful.
TRAITS=( 
"name"
"group"
"quantity"
"unit"
)

# Ingredients for the recipe. Each ingredient must have four
# elements: name, quantity, unit, comment.
INGREDIENTS=( 
)

# available units. Each is a pair: unit name, amount in grams.
UNITS=(
)

# Number of servings. This is optional, unless the unit trait is set
# to serving. addRecipes will get the total yield of the recipe,
# divide it by SERVINGS, and add an available unit, "serving", whose
# weight is equal to the result.
SERVINGS=

# Temporary collection used to hold the ingredients. CAREFUL -
# addRecipes will delete all ingredients in this collection.
TEMPORARY="temporary"

# vim: set filetype=zsh tw=68:
