Codebase list swi-prolog / 4c918686-78cb-4d7a-bf91-c7805bf36774/main debian / swi-prolog-x.postrm
4c918686-78cb-4d7a-bf91-c7805bf36774/main

Tree @4c918686-78cb-4d7a-bf91-c7805bf36774/main (Download .tar.gz)

swi-prolog-x.postrm @4c918686-78cb-4d7a-bf91-c7805bf36774/mainraw · history · blame

#!/bin/sh

set -e

PACKAGE=swi-prolog

# Create library index if swipl is still there
if which swipl > /dev/null;
   then
       swipl -q -g "make_library_index(swi(library))" -t halt
else
    rm -f /usr/lib/swi-prolog/library/INDEX.pl
fi

#DEBHELPER#