This file is indexed.

/usr/share/GNUstep/Makefiles/spec-rules.template is in gnustep-make 2.6.6-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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# Setup sources
#
%prep
%setup -n %{gs_name}-%{gs_version}

#
# Build commands
#
%build
if [ -z "$GNUSTEP_MAKEFILES" ]; then
  . %{gs_makefiles}/GNUstep.sh 
fi
if [ "%{gs_configure}" = "YES" ]; then 
  CFLAGS="$RPM_OPT_FLAGS" ./configure
fi
make

#
# Install commands (generate file list too)
#
%install
if [ -z "$GNUSTEP_MAKEFILES" ]; then
  . %{gs_makefiles}/GNUstep.sh 
fi

make DESTDIR=$RPM_BUILD_ROOT \
     GNUSTEP_INSTALLATION_DOMAIN=%{gs_install_domain} \
     filelist=yes install

#
# Clean commands
#
%clean
rm -rf $RPM_BUILD_ROOT

#
# File list (generated by install)
#
%files -f %{gs_file_list}