From efce5b6bd5c9d4f8214a71e0f7a7c35751710a4c Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 8 Nov 2021 01:17:11 +0800 Subject: + tolua + lpeg --- ThirdParty/toluapp/debian/postrm.ex | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ThirdParty/toluapp/debian/postrm.ex (limited to 'ThirdParty/toluapp/debian/postrm.ex') diff --git a/ThirdParty/toluapp/debian/postrm.ex b/ThirdParty/toluapp/debian/postrm.ex new file mode 100644 index 0000000..8255a71 --- /dev/null +++ b/ThirdParty/toluapp/debian/postrm.ex @@ -0,0 +1,38 @@ +#! /bin/sh +# postrm script for tolua++ +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 -- cgit v1.1-26-g67d0