summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-06-19 13:48:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-06-19 13:48:40 +0900
commit1028598a976efc5206b8bffacf547337928cc627 (patch)
tree12bb47fc92719a35b51115943a4888deada5033d /debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
parent73972eeb1fc6374053819de94866f7570383a87b (diff)
downloadtde-packaging-1028598a.tar.gz
tde-packaging-1028598a.zip
DEB buildscripts: removed from R14.1.x branch. These scripts are kept up to date on master branch only, to avoid unnecessary repetition.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh')
-rwxr-xr-xdebian/_buildscripts/local/hook_examples/tdebase/pre_build.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh b/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
deleted file mode 100755
index e764c29ad..000000000
--- a/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-CURR_DIR=$PWD
-cd "$PKG_BUILD_PATH"
-
-# Apply patches
-if [ "$bool_COPY_PKG_SRC" = "y" ]; then
- echo -e "${CLightPurple}Applying Kate save all patch${CNone}"
- patch -p2 < "$HOOK_DIR/$PKG_NAME/018_kate_save_all.diff"
-
- echo -e "${CLightPurple}Applying SAK patch${CNone}"
- patch -p1 < "$HOOK_DIR/$PKG_NAME/tdebase-usesak.diff"
-fi
-
-cd "$CURR_DIR"
-return 0