28 lines
561 B
RPMSpec
28 lines
561 B
RPMSpec
Name: cups-myconf
|
|
Version: 1.0
|
|
Release: 0.%(perl -e 'print time()')
|
|
Summary: Custom cups configuration
|
|
License: MIT
|
|
Group: Development/Tools
|
|
|
|
%description
|
|
config file for cups
|
|
|
|
%pre
|
|
rm -f /etc/cups/client.conf.myconf
|
|
|
|
%post
|
|
cp -f /etc/cups/client.conf.myconf /etc/cups/client.conf
|
|
|
|
%install
|
|
mkdir -p %{buildroot}/etc/cups
|
|
cp client.conf %{buildroot}/etc/cups/client.conf.myconf
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%attr(644,root,root) /etc/cups/client.conf.myconf
|
|
|
|
%changelog
|
|
* Sat Nov 02 2024 David Rotermund <davrot@uni-bremen.de> - 1.0-1
|
|
- Initial RPM release.
|
|
|