Changes

From SME Server
Jump to navigationJump to search
315 bytes added ,  15:07, 11 October 2020
Line 34: Line 34:  
==== %define version 1.0.0 ====
 
==== %define version 1.0.0 ====
 
==== %define release 02 ====
 
==== %define release 02 ====
 +
 
==== Version: %{version} ====
 
==== Version: %{version} ====
==== Release: %{release} ====
+
==== Release: %{release}%{?dist} ====
    
  # The copyright should be "GPL" for any contrib module you hope to
 
  # The copyright should be "GPL" for any contrib module you hope to
 
  # make available for other SME Server users
 
  # make available for other SME Server users
 +
 
==== Copyright: GPL ====
 
==== Copyright: GPL ====
   Line 136: Line 138:     
==== %setup ====
 
==== %setup ====
==== %patch0 -p1 ====
+
===== %patch0 -p1 =====
    
  # The build section lists commands to run as part of the build process
 
  # The build section lists commands to run as part of the build process
Line 144: Line 146:     
==== %build ====
 
==== %build ====
====%{__mkdir_p} root/var/lib/packageName/tmp====
+
# A cool way for creating a directory called '''tmp''' during the rpm installation
# A cool way to create a directory called '''tmp''' even if it doesn't exist
+
=====%{__mkdir_p} root/var/lib/packageName/tmp=====
  # in the upstream rpm.
+
or
 +
  %{__mkdir} -p $RPM_BUILD_ROOT/var/log/httpd-bkpc
    
===== perl createlinks =====
 
===== perl createlinks =====
Line 163: Line 166:  
  # now we generate a file list so we know what's in the RPM; see the
 
  # now we generate a file list so we know what's in the RPM; see the
 
  # %files section below for how it's actually used
 
  # %files section below for how it's actually used
 +
# A you can see below we set permissions and ownership on files and directories
 +
# You can also ignore adding a directory with --ignoredir
    
  rm -rf $RPM_BUILD_ROOT
 
  rm -rf $RPM_BUILD_ROOT
Line 180: Line 185:  
     --file /var/service/dhcp-dns/dhcp-dns 'attr(0750,root,root)' \
 
     --file /var/service/dhcp-dns/dhcp-dns 'attr(0750,root,root)' \
 
     --file /var/service/dhcp-dns/run 'attr(0750,root,root)' \
 
     --file /var/service/dhcp-dns/run 'attr(0750,root,root)' \
# A you can see above we set permissions and ownership on files and directories
+
    --ignoredir /etc/sudoers.d \
 
     $RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist
 
     $RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist
  # This section will help clear out the build root before
+
 
  # building the RPM
+
# we can push file to a destination in order to use them after in a mysql.init script
 +
  # the file needs to be outside of the root/ of your rpm
 +
  # for example :
 +
# my $dbstruct = `rpm -qd smeserver-packageName | grep packageName.sql`;
 +
# /usr/bin/mysql $db < $dbstruct
 +
 
 
  echo "%doc CHANGELOG.git" >> %{name}-%{version}-filelist
 
  echo "%doc CHANGELOG.git" >> %{name}-%{version}-filelist
  echo "%doc phpmyadmin.sql" >> %{name}-%{version}-filelist
+
  echo "%doc packageName.sql" >> %{name}-%{version}-filelist
# we can push file to a destination in order to use them after in a mysql.init script for example
  −
 
  −
==== %clean ====
  −
rm -rf $RPM_BUILD_ROOT
      
  # Now we have to list all the files that are part of our installed RPM
 
  # Now we have to list all the files that are part of our installed RPM
Line 206: Line 212:  
====%defattr(-,root,root)====
 
====%defattr(-,root,root)====
 
====%attr(755,root,root) /etc/e-smith/sql/init/sme8admin====
 
====%attr(755,root,root) /etc/e-smith/sql/init/sme8admin====
 +
 +
# This section will help clear out the build root before
 +
# building the RPM
 +
 +
==== %clean ====
 +
rm -rf $RPM_BUILD_ROOT
    
  # The preun section lists commands to run prior to uninstalling the software
 
  # The preun section lists commands to run prior to uninstalling the software

Navigation menu