| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
case "$1" in
configure)
if test -d /usr/share/slib; then
dpkg-trigger /usr/share/slib
fi
;;
triggered)
case " $2 " in
*" /usr/share/slib "*)
# Configure slib support.
if test -d /usr/share/slib
then
# Uncomment the code below whenever SLIB supports Guile 2.2.
echo "SLIB does not support Guile 2.2 yet. Ignoring."
#(cd /usr/share/guile/2.2 && ln -sf ../../slib .)
#/usr/lib/guile-2.2/bin/guile -c \
# "(use-modules (ice-9 slib)) (require 'new-catalog)"
else
# slib isn't installed -- clean up symlink.
rm -f /usr/share/guile/2.2/slib
fi
;;
esac
;;
esac