fakeroot.install 237 B

123456789101112131415
  1. post_install() {
  2. usr/bin/ldconfig -r .
  3. }
  4. post_upgrade() {
  5. if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
  6. sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
  7. fi
  8. usr/bin/ldconfig -r .
  9. }
  10. pre_remove() {
  11. usr/bin/ldconfig -r .
  12. }