tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / sysui / desktop / solaris / postinstall
blob594db276bf43cc70c02cfdf3fc033fed4f7fa739
1 #!/bin/sh
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 # check whether /usr is writable
21 tiptoe="${PKG_INSTALL_ROOT}/usr/_.$$"
22 touch "$tiptoe" >/dev/null 2>&1
23 if [ $? -ne 0 ]; then
24 exit 0
26 rm -f "$tiptoe"
28 # update shared mime database
29 if [ -x /usr/bin/update-mime-database ]; then
30 update-mime-database "${PKG_INSTALL_ROOT}"/usr/share/mime
33 if [ -x /usr/bin/update-desktop-database ]; then
34 /usr/bin/update-desktop-database -q
35 elif (which update-desktop-database); then
36 update-desktop-database -q /usr/share/applications
40 exit 0