From 414820e2d3295aa3021388ef39dbd025cabb2470 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Wed, 27 Feb 2019 20:01:08 +0100 Subject: [PATCH] build-package.sh: add short descriptions for package hooks --- build-package.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-package.sh b/build-package.sh index 18917fdbe..78a54d29e 100755 --- a/build-package.sh +++ b/build-package.sh @@ -87,6 +87,7 @@ source scripts/build/configure/termux_step_configure_meson.sh # Configure the package source scripts/build/configure/termux_step_configure.sh +# Hook for packages after configure step termux_step_post_configure() { return } @@ -108,6 +109,7 @@ source scripts/build/termux_step_extract_into_massagedir.sh # Function to run various cleanup/fixes source scripts/build/termux_step_massage.sh +# Hook for packages after massage step termux_step_post_massage() { return } @@ -115,6 +117,7 @@ termux_step_post_massage() { # Create data.tar.gz with files to package. Not to be overridden by package scripts. source scripts/build/termux_step_create_datatar.sh +# Hook function to create {pre,post}install, {pre,post}rm-scripts and similar termux_step_create_debscripts() { return }