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/applications/kaffeine/pre_build.sh

14 lines
256 B

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