prerm is in libhybris 0.1.0+git20151016+6d424c9-0ubuntu7.
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 | #!/bin/sh
#
# Copyright (C) 2007 Mario Limonciello
# Copyright (C) 2009-2011 Canonical Ltd.
set -e
PACKAGE_NAME=libhybris
case "$1" in
remove)
update-alternatives --remove x86_64-linux-gnu_egl_conf /usr/lib/x86_64-linux-gnu/libhybris-egl/ld.so.conf
# explicit ldconfig due to alternatives
LDCONFIG_NOTRIGGER=y ldconfig
;;
esac
|