summarylogtreecommitdiffstats
path: root/luatools-wine.install
diff options
context:
space:
mode:
Diffstat (limited to 'luatools-wine.install')
-rw-r--r--luatools-wine.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/luatools-wine.install b/luatools-wine.install
new file mode 100644
index 000000000000..08fbc71ba0f8
--- /dev/null
+++ b/luatools-wine.install
@@ -0,0 +1,17 @@
+# luatools-wine.post_install
+
+info() {
+ echo -e "Wine LuatTools 是合宙的 Lua 调试工具"
+}
+post_install() {
+ info
+}
+post_upgrade() {
+ info
+ echo "deleting the luatools bottle..."
+ find /home -maxdepth 2 -name ".luatools" -exec rm -rf {} \;
+}
+pre_remove() {
+ echo "deleting the luatools bottle..."
+ find /home -maxdepth 2 -name ".luatools" -exec rm -rf {} \;
+}