| OLD | NEW |
| 1 #------------------------------------------------------------------------------ | 1 #------------------------------------------------------------------------------ |
| 2 # chrome.spec | 2 # chrome.spec |
| 3 #------------------------------------------------------------------------------ | 3 #------------------------------------------------------------------------------ |
| 4 | 4 |
| 5 #------------------------------------------------------------------------------ | 5 #------------------------------------------------------------------------------ |
| 6 # Prologue information | 6 # Prologue information |
| 7 #------------------------------------------------------------------------------ | 7 #------------------------------------------------------------------------------ |
| 8 Summary : @@MENUNAME@@ | 8 Summary : @@MENUNAME@@ |
| 9 License : Multiple, see @@PRODUCTURL@@ | 9 License : Multiple, see @@PRODUCTURL@@ |
| 10 Name : @@PACKAGE_FILENAME@@ | 10 Name : @@PACKAGE_FILENAME@@ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 # We cheat and just let RPM figure it out for us; everything we install | 83 # We cheat and just let RPM figure it out for us; everything we install |
| 84 # should go under this prefix anyways. | 84 # should go under this prefix anyways. |
| 85 @@INSTALLDIR@@ | 85 @@INSTALLDIR@@ |
| 86 | 86 |
| 87 # Be explicit about the files we scatter throughout the system we don't | 87 # Be explicit about the files we scatter throughout the system we don't |
| 88 # accidentally "own" stuff that's not ours (crbug.com/123990). | 88 # accidentally "own" stuff that's not ours (crbug.com/123990). |
| 89 /etc/cron.daily/@@PACKAGE@@ | 89 /etc/cron.daily/@@PACKAGE@@ |
| 90 %ghost %attr(755,root,root) /usr/bin/google-chrome | 90 %ghost %attr(755,root,root) /usr/bin/google-chrome |
| 91 /usr/bin/@@USR_BIN_SYMLINK_NAME@@ | 91 /usr/bin/@@USR_BIN_SYMLINK_NAME@@ |
| 92 /usr/share/appdata/@@PACKAGE@@.appdata.xml | |
| 93 /usr/share/applications/@@PACKAGE@@.desktop | 92 /usr/share/applications/@@PACKAGE@@.desktop |
| 94 /usr/share/gnome-control-center/default-apps/@@PACKAGE@@.xml | 93 /usr/share/gnome-control-center/default-apps/@@PACKAGE@@.xml |
| 95 %docdir /usr/share/man/man1 | 94 %docdir /usr/share/man/man1 |
| 96 /usr/share/man/man1/@@PACKAGE@@.1 | 95 /usr/share/man/man1/@@PACKAGE@@.1 |
| 97 | 96 |
| 98 #------------------------------------------------------------------------------ | 97 #------------------------------------------------------------------------------ |
| 99 # Pre install script | 98 # Pre install script |
| 100 #------------------------------------------------------------------------------ | 99 #------------------------------------------------------------------------------ |
| 101 %pre | 100 %pre |
| 102 | 101 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 #esac | 221 #esac |
| 223 | 222 |
| 224 exit 0 | 223 exit 0 |
| 225 | 224 |
| 226 #------------------------------------------------------------------------------ | 225 #------------------------------------------------------------------------------ |
| 227 # Post uninstallation script | 226 # Post uninstallation script |
| 228 #------------------------------------------------------------------------------ | 227 #------------------------------------------------------------------------------ |
| 229 %postun | 228 %postun |
| 230 | 229 |
| 231 exit 0 | 230 exit 0 |
| OLD | NEW |