 Rantfile example for making a simple debian package of a ruby program
 using git-buildpackage with debuild

 used in conjunction with the pkgrc.yml (and pkgrc.rb) example provided
 (example is easily extended and works for package rant, and package diakonos),
 the package default is for git branches named upstream and debian/sid, as set
 in the  pkgrc.yml file, and both git and git-buildpackage would need to be
 installed

 * package should be in directory with package name without package version
   number

 * Build files Rantfile (linked to rbuild), pkgrc.yml and pkgrc.rb should be in
   directory above package directory,
   e.g. for rant ls (relevant files)
     pkgrc.rb  pkgrc.yml  Rantfile [linked to rbuild or rename rbuild Rantfile]

 * provide details of package in pkgrc.yml file [which is a yaml file] (see
   example provided)

 * once these two files are in place for help on package and on possible
   actions, enter:
     rant
     rant info
     rant -T
     # to build the package
     rant pkg

 * to create independent rant independent ruby script:
     rant-import --auto [provide name of ruby (rant exported) script]

  to create the script deb_pkg_r provided:
    rant-import --auto deb_pkg_r

    NOTE this is a ruby script generated by rant, that only requires ruby to
    run
    [if permissions set to executable, else type: ruby deb_pkg_r ]
      deb_pkg_r
      deb_pkg_r info
      deb_pkg_r -T
      # to build the package
      deb_pkg_r pkg

 Rant is a Ruby 'ant' by Stefan Lang
 * Rant may be downloaded and installed from:
     http://make.rubyforge.org/

 * [NOTE should also work as a Rakefile
     rake
     rake -T
     # to build the package
     rake pkg
   ]

 Notes by Ralph Amissah
