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/postinst.ex | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 ThirdParty/toluapp/debian/postinst.ex (limited to 'ThirdParty/toluapp/debian/postinst.ex') diff --git a/ThirdParty/toluapp/debian/postinst.ex b/ThirdParty/toluapp/debian/postinst.ex new file mode 100644 index 0000000..5dc370e --- /dev/null +++ b/ThirdParty/toluapp/debian/postinst.ex @@ -0,0 +1,42 @@ +#! /bin/sh +# postinst script for tolua++ +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +case "$1" in + configure) + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst 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