"Fossies" - the Fresh Open Source Software Archive

Member "checkinstall-1.6.2/checkinstallrc-dist" (11 Nov 2008, 3685 Bytes) of package /linux/privat/old/checkinstall-1.6.2.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 
    2 #############################################################################
    3                    #    CheckInstall configuration file   #
    4                    ########################################
    5 
    6 ####################################################################
    7 # These are default settings for CheckInstall, modify them as you  #
    8 # need. Remember that command line switches will override them.    #
    9 ####################################################################
   10 
   11 # Debug level
   12 #   0: No debug
   13 #   1: Keep all temp files except the package's files
   14 #   2: Keep the package's files too
   15 
   16 DEBUG=0
   17 
   18 # Location of the "installwatch" program
   19 INSTALLWATCH_PREFIX="/usr/local"
   20 INSTALLWATCH=${INSTALLWATCH_PREFIX}/bin/installwatch
   21 
   22 # Location of the makepkg program. "makepak" is the default, and is 
   23 # included with checkinstall. If you want to use Slackware's native "makepkg"
   24 # then set this to "makepkg"
   25 
   26 MAKEPKG=/sbin/makepkg
   27 
   28 # makepkg optional flags. These are recommended if running a newer Slackware
   29 # version: "-l y -c n"
   30 
   31 MAKEPKG_FLAGS="-l y -c n"
   32 
   33 # Is MAKEPKG running interactively? If so, you might want
   34 # to see what it's doing:
   35 
   36 SHOW_MAKEPKG=0
   37 
   38 # Where will we keep our temp files?
   39 BASE_TMP_DIR=/var/tmp   ##  Don't set this to /tmp or / !! 
   40 
   41 # Where to place the installed document files
   42 DOC_DIR=""
   43 
   44 # Default architecture type (Leave it empty to allow auto-guessing)
   45 ARCHITECTURE=""
   46 
   47 # Default package type. Leave it empty to enable asking everytime
   48 #   S : Slackware
   49 #   R : RPM
   50 #   D : Debian
   51 
   52 INSTYPE=""
   53 
   54 # Storage directory for newly created packages
   55 # By default they will be stored at the default
   56 # location defined for the package type
   57 
   58 PAK_DIR=""
   59 
   60 # RPM optional flags
   61 RPM_FLAGS=" --force --nodeps --replacepkgs "
   62 
   63 # dpkg optional flags
   64 DPKG_FLAGS=""
   65 
   66 
   67 ## These are boolean. Set them to 1 or 0
   68 
   69 # Interactively show the results of the install command (i.e. "make install")?
   70 # This is useful for interactive installation commands
   71 SHOW_INSTALL=1
   72 
   73 # Show Slackware package installation script while it runs? Again, useful if
   74 # it's an interactive script
   75 SHOW_SLACK_INSTALL=0
   76 
   77 # Automatic deletion of "doc-pak" upon termination?
   78 DEL_DOCPAK=1
   79 
   80 # Automatic deletion of the spec file?
   81 DEL_SPEC=1
   82 
   83 # Automatic deletion of "description-pak"?
   84 DEL_DESC=1
   85 
   86 # Automatically strip all ELF binaries?
   87 STRIP_ELF=1
   88 
   89 # Automatically strip all ELF shared libraries?
   90 # Note: this setting will automatically be set to "0" if STRIP_ELF=0
   91 STRIP_SO_ELF=1
   92 
   93 # Automatically search for shared libraries and add them to /etc/ld.so.conf?
   94 # This is experimental and could mess up your dynamic loader configuration.
   95 # Use it only if you know what you are doing.
   96 ADD_SO=0
   97 
   98 # Automatically compress all man pages?
   99 COMPRESS_MAN=1
  100 
  101 # Set the umask to this value
  102 CKUMASK=0022
  103 
  104 # Backup files overwritten or modified by your install command?
  105 BACKUP=1 
  106 
  107 # Write a doinst.sh file that installs your description (Slackware)?
  108 AUTODOINST=1
  109 
  110 # Are we going to use filesystem translation?
  111 TRANSLATE=1            
  112 
  113 # Reset the owner/group of all files to root.root?
  114 RESET_UIDS=0               
  115 
  116 # Use the new (8.1+) Slackware description file format?
  117 NEW_SLACK=1
  118 
  119 # Comma delimited list of files/directories to be ignored
  120 EXCLUDE=""
  121 
  122 # Accept default values for all questions?
  123 ACCEPT_DEFAULT=0
  124 
  125 # Use "-U" flag in rpm by default when installing a rpm package
  126 # This tells rpm to (U)pdate the package instead of (i)nstalling it.
  127 RPM_IU=U
  128 
  129 # Inspect the file list before creating the package
  130 CK_INSPECT=0
  131       
  132 # Review the .spec file before creating a .rpm
  133 REVIEW_SPEC=0
  134       
  135 # Review the control file before creating a .deb
  136 REVIEW_CONTROL=0
  137       
  138 # Install the package or just create it?
  139 INSTALL=0