This file is indexed.

/usr/share/doc/acr/examples/cpu.acr is in acr 1.2-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
PKGNAME only_x86
VERSION 0.1

// architecture detection \\
ARCH_OK = 0 ;
IFEQ HOST_CPU i686 ;
	ARCH_OK = 1 ;
IFEQ HOST_CPU i386 ;
	ARCH_OK = 1 ;
DIENOT 
	ARCH_OK Your CPU is not supported ;

REPORT HOST_OS HOST_CPU ARCH_OK ;