File: meson_install.sh

package info (click to toggle)
piper 0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,460 kB
  • sloc: python: 2,734; sh: 85; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env sh

if [ -z $DESTDIR ]; then
	PREFIX=${MESON_INSTALL_PREFIX:-/usr}

    # Update icon cache
    gtk-update-icon-cache -f -t $PREFIX/share/icons/hicolor
    
    # Update desktop database cache
    update-desktop-database

    # Install new schemas
    #glib-compile-schemas $PREFIX/share/glib-2.0/schemas/
fi