/usr/share/cook/usr.local is in cook 2.33-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /*
* NAME
* usr.local - define installation locations
*
* DESCRIPTION
* This cookbook defined where certain directoris are,
* and some common uses of those directories,
* relative to /usr/local.
*
* VARIABLES
* bin directory to place program binaries into
* include directory to place include files into
* lib directory to place libraries into
* cc_include_flags The [include] directory is added to the search args
* cc_link_flags The [lib] directory is added to the search args
* Copyright (C) 2007 Peter Miller
*/
#pragma once
bin = /usr/local/bin;
include = /usr/local/include;
lib = /usr/local/lib;
if [not [defined cc_include_flags]] then
cc_include_flags = ;
cc_include_flags = [stringset [cc_include_flags] -I[include]];
if [not [defined cc_link_flags]] then
cc_link_flags = ;
cc_link_flags = [stringset [cc_link_flags] -L[lib]];
|