at `$path_to_templater_install/share/basic/setup` and execs it like this:
cd myproject && share/basic/setup $path_to_templater_install/share/templater
+
+You might even use `templater` to create a module:
+
+ cd path/to/templater/repo && templater share/templater/<module_name> templater
--- /dev/null
+#!/bin/bash
+#
+# Trashman package templater module.
+#
+
+# Parameters
+SHARE="$1"
+
+# Include basic functions
+source $SHARE/templater/functions || exit 1
+
+# Templater module
+function templater_trashman {
+ if [ ! -e "description" ]; then
+ __templater_echo "Setting Trashman package"
+
+ touch info
+ mkdir unix
+ else
+ __templater_echo "Trashman package already set"
+ fi
+}
+
+# Dispatch
+templater_trashman