You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/debian/_buildscripts/local/hook_examples/tdelibs/pre_build.sh

14 lines
264 B

#!/bin/bash
CURR_DIR=$PWD
cd "$PKG_BUILD_PATH"
# Apply patches
if [ "$bool_COPY_PKG_SRC" = "y" ]; then
echo -e "${CLightPurple}Applying kfinddialog placeholder patch${CNone}"
patch -p2 < "$HOOK_DIR/$PKG_NAME/038_placeholder.diff"
fi
cd "$CURR_DIR"
return 0