summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorlvlrk2023-08-02 03:07:25 +0000
committerlvlrk2023-08-02 03:07:25 +0000
commitf6645ac1521716ffb80d75af9ef765bef80d6ac7 (patch)
tree11aca18626ecc31f40e7685de3b7f257cb0b921d
parenta46168c448e88b571b75392c73ae7fe90a28b0e4 (diff)
downloadaur-f6645ac1521716ffb80d75af9ef765bef80d6ac7.tar.gz
initial
-rw-r--r--.INSTALL31
1 files changed, 31 insertions, 0 deletions
diff --git a/.INSTALL b/.INSTALL
new file mode 100644
index 000000000000..0eee4681de4b
--- /dev/null
+++ b/.INSTALL
@@ -0,0 +1,31 @@
+## arg 1: the new package version
+#pre_install() {
+ # do something here
+#}
+
+## arg 1: the new package version
+#post_install() {
+ # do something here
+#}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#pre_upgrade() {
+ # do something here
+#}
+
+## arg 1: the new package version
+## arg 2: the old package version
+#post_upgrade() {
+ # do something here
+#}
+
+## arg 1: the old package version
+pre_remove() {
+ sudo rm -rf /usr/bin/fmon /usr/lib/libfmon.so
+}
+
+## arg 1: the old package version
+#post_remove() {
+ # do something here
+#}