postinst is in libhybris 0.1.0+git20131207+e452e83-0ubuntu12.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/sh
# Copyright (C) 2007 Mario Limonciello
# Copyright (C) 2009-2011 Canonical Ltd.
set -e
PACKAGE_NAME=libhybris
ARCH=`dpkg --print-architecture`
if [ "$1" = "configure" ]; then
update-alternatives --force \
--install /etc/ld.so.conf.d/x86_64-linux-gnu_EGL.conf x86_64-linux-gnu_egl_conf /usr/lib/x86_64-linux-gnu/libhybris-egl/ld.so.conf 400
# ldconfig needs to be run immediately as we're changing /etc/ld.so.conf.d/ with
# alternatives.
LDCONFIG_NOTRIGGER=y ldconfig
fi
# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section
|