This file is indexed.

/usr/lib/x86_64-linux-gnu/kodi/Uninstall.cmake is in kodi-addons-dev 2:17.1+dfsg1-3.

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
# Uninstall target
set(MANIFEST ${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt)
if(EXISTS ${MANIFEST})
  file(STRINGS ${MANIFEST} files)
    foreach(file IN LISTS files)
      if(EXISTS $ENV{DESTDIR}${file})
        message(STATUS "Uninstalling: ${file}")
        execute_process(
          COMMAND ${CMAKE_COMMAND} -E remove $ENV{DESTDIR}${file}
          OUTPUT_VARIABLE rm_out
          RESULT_VARIABLE rm_retval
        )
        if(NOT "${rm_retval}" STREQUAL 0)
          message(FATAL_ERROR "Failed to remove file: $ENV{DESTDIR}${file}")
        endif()
      else()
        message(STATUS "File does not exist: $ENV{DESTDIR}${file}")
      endif()
    endforeach(file)
else()
  message(STATUS "Cannot find install manifest: '${MANIFEST}'")
endif()