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 |
92 /usr/share/applications/@@PACKAGE@@.desktop | 93 /usr/share/applications/@@PACKAGE@@.desktop |
93 /usr/share/gnome-control-center/default-apps/@@PACKAGE@@.xml | 94 /usr/share/gnome-control-center/default-apps/@@PACKAGE@@.xml |
94 %docdir /usr/share/man/man1 | 95 %docdir /usr/share/man/man1 |
95 /usr/share/man/man1/@@PACKAGE@@.1 | 96 /usr/share/man/man1/@@PACKAGE@@.1 |
96 | 97 |
97 #------------------------------------------------------------------------------ | 98 #------------------------------------------------------------------------------ |
98 # Pre install script | 99 # Pre install script |
99 #------------------------------------------------------------------------------ | 100 #------------------------------------------------------------------------------ |
100 %pre | 101 %pre |
101 | 102 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 #esac | 222 #esac |
222 | 223 |
223 exit 0 | 224 exit 0 |
224 | 225 |
225 #------------------------------------------------------------------------------ | 226 #------------------------------------------------------------------------------ |
226 # Post uninstallation script | 227 # Post uninstallation script |
227 #------------------------------------------------------------------------------ | 228 #------------------------------------------------------------------------------ |
228 %postun | 229 %postun |
229 | 230 |
230 exit 0 | 231 exit 0 |
OLD | NEW |