;; -*-emacs-lisp-*-
(let ((package-dir (concat "/usr/share/"
                           (symbol-name flavor)
                           "/site-lisp/sepia")))

  ;; If package-dir does not exist, the sepia package must have
  ;; removed but not purged, and we should skip the setup.
  (when (file-directory-p package-dir)
    (debian-pkg-add-load-path-item package-dir)
    (autoload 'sepia-repl "sepia"
      "Start the Sepia REPL." t)
    (autoload 'sepia-scratch "sepia"
      "Switch to the sepia scratchpad." t)))
