27 lines
		
	
	
		
			524 B
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			524 B
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
Name: EXAMPLE_VIM
 | 
						|
Summary: TIS In-Service Vim Patch Script Example
 | 
						|
Version: 1.0
 | 
						|
Release: %{tis_patch_ver}%{?_tis_dist}
 | 
						|
License: Apache-2.0
 | 
						|
Group: base
 | 
						|
Packager: Wind River <info@windriver.com>
 | 
						|
Source0: vim-restart-example
 | 
						|
 | 
						|
%install
 | 
						|
    install -Dp -m 700 %{S:0} %{buildroot}%{_patch_scripts}/%{name}
 | 
						|
 | 
						|
%description
 | 
						|
%{summary}
 | 
						|
 | 
						|
%files
 | 
						|
%defattr(-,root,root,-)
 | 
						|
%{_patch_scripts}/*
 | 
						|
 | 
						|
%post
 | 
						|
cp -f %{_patch_scripts}/%{name} %{_runtime_patch_scripts}/
 | 
						|
exit 0
 | 
						|
 | 
						|
%preun
 | 
						|
cp -f %{_patch_scripts}/%{name} %{_runtime_patch_scripts}/
 | 
						|
exit 0
 |