The script file you must edit to implement a program is the ''6#6package name5#5.tcl'' file in the scripts directory in the Package Directory (in this example, pkg/foobar1.0/scripts/foobar.tcl).
The script file can be read as:
#################################################### ########## foobar.tcl ########## ########## Copyright 2008 Manabu Inuzuka <manabu@example.com> ########## ########## package name:foobar ########## package version:1.0 ########## tkDerm version:1.4.0 ##########--some lines are omitted here for saving the space--
namespace eval foobar {
### variable declaration should be here
namespace export *
}
### init will be executed when your package is selected from package menu.
proc foobar::init {} {
}
--the script is continuing--
tkDerm should have been shipped with some useful packages. Studying them will help you to implement your own package.