crux-musl

Unnamed repository; edit this file 'description' to name the repository.
git clone https://codeberg.org/emmett1/crux-musl
Log | Files | Refs | README | LICENSE

prt-get.conf (1335B)


      1 ###
      2 ### /etc/prt-get.conf: prt-get(8) configuration
      3 ###
      4 
      5 ## configure directories prt-get will source ports from
      6 ## note: the order matters: the package found first is used
      7 prtdir /usr/ports/musl
      8 prtdir /usr/ports/core
      9 prtdir /usr/ports/opt
     10 prtdir /usr/ports/xorg
     11 
     12 ## the following line enables the user maintained contrib collection
     13 #prtdir /usr/ports/contrib
     14 
     15 ## use mypackage from local directory
     16 #prtdir /home/packages/build:mypackage
     17 
     18 ## log options
     19 ## logfile variables:     %p=path to port dir,
     20 ##                        %n=port name, %v=version, %r=release
     21 #writelog enabled         # (enabled|disabled)
     22 #logmode  overwrite       # (append|overwrite)
     23 #rmlog_on_success yes     # (no|yes)
     24 logfile  /var/log/pkgbuild/%n.log
     25 
     26 ## use alternate cache file (default: /var/lib/pkg/prt-get.cache)
     27 #cachefile /mnt/nfs/cache
     28 
     29 ## print README information
     30 #readme verbose           # (verbose|compact|disabled)
     31 
     32 ## prefer higher versions in sysup / diff
     33 #preferhigher no          # (yes|no)
     34 
     35 ## use regexp search
     36 #useregex no              # (yes|no)
     37 
     38 ## run pre- and post-installs scripts; yes is equivalent to the
     39 ## --install-scripts option
     40 runscripts yes             # (no|yes)
     41 
     42 ### EXPERT SECTION ###
     43 
     44 ## alternative commands
     45 #makecommand      pkgmk
     46 #addcommand       pkgadd
     47 #removecommand    pkgrm
     48 #runscriptcommand sh
     49 
     50 # End of file