This file is indexed.

/usr/lib/cmake/paraview/Findpugixml.cmake is in paraview-dev 5.0.1+dfsg1-4.

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
find_library(PUGIXML_LIBRARIES
    NAMES pugixml
)
find_path(PUGIXML_INCLUDE_DIRS
    NAMES pugixml.hpp
    PATH_SUFFIXES pugixml
)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(pugixml DEFAULT_MSG
    PUGIXML_LIBRARIES
    PUGIXML_INCLUDE_DIRS
)