X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Fpreinst.template;fp=debian%2Fpreinst.template;h=0000000000000000000000000000000000000000;hb=6a5181763a4435d897bd1405c7e8d4985a07fb12;hp=e0b5f37034e51b0c1fbbd77b952c1870eb80d203;hpb=86788b19fcdd1c6be7f91c0eb7bb82e81cc2dc55;p=clsql.git diff --git a/debian/preinst.template b/debian/preinst.template deleted file mode 100644 index e0b5f37..0000000 --- a/debian/preinst.template +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# This is part of clsql program: -# http://clsql.med-info.com -# -# Copyright (c) 2002 Kevin M. Rosenberg - -set -e - -pkg=%% -dir=/usr/share/common-lisp/source/$pkg - -case "$1" in - install|upgrade|abort-upgrade) - test -h $dir && rm $dir - rm -rf ${dir}-[0-9\.]* - ;; - *) - echo "preinst called with unknown argument '$1'" >&2 - ;; -esac - -#DEBHELPER# - -exit 0