X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Fpreinst;fp=debian%2Fpreinst;h=0000000000000000000000000000000000000000;hb=fd03f207e4c7e4bb1591e4902e31f9f032cffde6;hp=b83d2ac23c231a103cbc3c2b5b69c0ca97f5be34;hpb=f5e6a5198989a460c4787041830d66fa76ebcdab;p=uffi.git diff --git a/debian/preinst b/debian/preinst deleted file mode 100755 index b83d2ac..0000000 --- a/debian/preinst +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# This is part of uffi program: -# http://uffi.med-info.com -# -# Copyright (c) 2002 Kevin M. Rosenberg - -pkg=uffi -dir=/usr/share/common-lisp/source/$pkg - -case "$1" in - install|upgrade|abort-upgrade) - # Remove any old versions - test -h $dir && rm $dir - rm -rf ${dir}-[0-9\.]* - ;; - *) - echo "preinst called with unknown argument '$1'" >&2 - ;; -esac - -#DEBHELPER# - -exit 0