===============================================================================
Debian/RPM Paket Builder        (c) 2007 by Itzchak Rehberg (devel@izzysoft.de)
-------------------------------------------------------------------------------
$Id: specfile.txt 43 2007-08-01 12:01:28Z izzy $
-------------------------------------------------------------------------------
Create RPM SPEC files and build *.deb / *.rpm out of these
===============================================================================

Hints for the SPEC file template:
=================================

* To add an entire directory including all subdirs and files, simply add the
  (top) directory in the %files section *BEFORE* the %config keyword (if any),
  e.g.:

  %files
  %defattr(-,root,root)
  /usr/share/dummy
  %config /usr/share/dummy/inc/config.inc

* Lazy to add any file locations? Simply add the __DIR__ placeholder in the
  %files section. This will be replaced by a complete file list (all files
  of your distribution - before using this, read the corresponding part on
  the manpage - "man pkgmake.tpl" - carefully!). Example:

  %files
  %defattr(-,root,root)
  __DIR__
  %config /usr/share/dummy/inc/config.inc

* For now, leave the %changelog section empty. pkgmake will add your specified
  CHANGELOG file (if any) and a fake changelog entry itself. It does not yet
  check whether there are already entries in the .spec file and thus would
  mess up the order if there are any.
