This file is indexed.

/usr/share/dune/cmake/modules/FindAmiraMesh.cmake is in libdune-grid-dev 2.5.1-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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# .. cmake_module::
#
#    Module that checks whether AmiraMesh is available and usable.
#
#    Variables used by this module which you may want to set:
#
#    :ref:`AMIRAMESH_ROOT`
#       Path list to search for AmiraMesh
#
#    Sets the follwing variable:
#
#    :code:`AMIRAMESH_FOUND`
#       True if AmiraMesh available and usable.
#
#    :code:`AMIRAMESH_INCLUDE_DIRS`
#       Path to the AmiraMesh include dirs.
#
#    :code:`AMIRAMESH_LIBRARIES`
#       Name to the AmiraMesh library.
#
# .. cmake_variable:: AMIRAMESH_ROOT
#
#    You may set this variable to have :ref:`FindAmiraMesh` look
#    for the AmiraMesh package in the given path before inspecting
#    system paths.
#

find_path(AMIRAMESH_INCLUDE_DIR
  NAMES "amiramesh/AmiraMesh.h"
  PATHS ${AMIRAMESH_PREFIX} ${AMIRAMESH_ROOT}
  PATH_SUFFIXES "include"
)

find_library(AMIRAMESH_LIBRARY
  NAMES libamiramesh.a amiramesh
  PATHS ${AMIRAMESH_PREFIX} ${AMIRAMESH_ROOT}
  PATH_SUFFIXES "lib"
)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
  "AmiraMesh"
  DEFAULT_MSG
  AMIRAMESH_INCLUDE_DIR
  AMIRAMESH_LIBRARY
)

mark_as_advanced(AMIRAMESH_INCLUDE_DIR AMIRAMESH_LIBRARY AMIRAMESH_FOUND)

set(HAVE_AMIRAMESH ${AMIRAMESH_FOUND})

if(AMIRAMESH_FOUND)
  set(AMIRAMESH_INCLUDE_DIRS "${AMIRAMESH_INCLUDE_DIR}")
  set(AMIRAMESH_LIBRARIES "${AMIRAMESH_LIBRARY}")
  set(AMIRAMESH_COMPILE_FLAGS "-I${AMIRAMESH_INCLUDE_DIR} -DHX_HAS_STDIOSTREAM")

  dune_register_package_flags(COMPILE_DEFINITIONS "HX_HAS_STDIOSTREAM"
                              INCLUDE_DIRS "${AMIRAMESH_INCLUDE_DIR}"
                              LIBRARIES "${AMIRAMESH_LIBRARIES}")
endif()