You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
3 years ago
|
%info_requires \
|
||
|
Requires(post): /sbin/install-info \
|
||
|
Requires(preun): /sbin/install-info
|
||
|
|
||
|
%info_post() \
|
||
|
if [ -f %{_infodir}/%1 ]; then # --excludedocs? \
|
||
|
/sbin/install-info %{_infodir}/%1 %{_infodir}/dir || : \
|
||
|
fi
|
||
|
|
||
|
%info_preun() \
|
||
|
if [ $1 == 0 ]; then \
|
||
|
if [ -f %{_infodir}/%1 ]; then # --excludedocs? \
|
||
|
/sbin/install-info --delete %{_infodir}/%1 %{_infodir}/dir || : \
|
||
|
fi \
|
||
|
fi
|