cookutils view cook.site @ rev 1150

Show recent broken packages first
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 19 15:32:45 2022 +0000 (2022-02-19)
parents 54c97f545127
children
line source
1 # /etc/slitaz/cook.site: Default options passed to ./configure in SliTaz
2 #
3 # This file is used since we can't export these variables, but configure
4 # handles CONFIG_SITE and will source this file automatically.
5 #
6 # If you want to use your own cook.site, you can use:
7 # export CONFIG_SITE=config.site in compile_rules() of a receipt.
8 #
10 # Find receipt (backward recursively from current dir)
11 receiptpath=$(realpath .)
12 until [ -z "$receiptpath" -o -e "$receiptpath/receipt" ]; do
13 receiptpath="${receiptpath%/*}"
14 done
17 # Default options.
18 prefix="/usr"
20 case $sysconfdir in
21 /etc*) ;;
22 *) sysconfdir="/etc";;
23 esac
25 case $localstatedir in
26 /var*) ;;
27 *) localstatedir="/var";;
28 esac
30 datarootdir="$prefix/share"
31 #datadir="$datarootdir" # respect "kbd" receipt
32 infodir="$datarootdir/info"
33 localedir="$datarootdir/locale"
34 mandir="$datarootdir/man"
35 docdir="$datarootdir/doc/$(. $receiptpath/receipt; echo $PACKAGE-$VERSION)"
37 unset receiptpath