index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2025-03-16 20:12:42 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2025-03-16 20:12:42 +0100 |
commit | b79b42e58b90a54eb5644ae10d04b5bfde26fb75 (patch) | |
tree | efc264b13e87d1fccab33b445d86c9ed7147bc61 /build-support-disabled/rust/watcher.sh | |
parent | fc72f1b90bda328df3f4531ca2814a1205f92396 (diff) |
-rwxr-xr-x | build-support-disabled/rust/watcher.sh | 25 |
diff --git a/build-support-disabled/rust/watcher.sh b/build-support-disabled/rust/watcher.sh new file mode 100755 index 00000000..544c3712 --- /dev/null +++ b/build-support-disabled/rust/watcher.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +term() { + echo "--> Got SIGTERM" + echo "--> killing inotifywait with PID $inotifywait" + kill -TERM "$inotifywait" +} + +srcdir="$1" + +trap term SIGTERM + +inotifywait -mr -e close_write --format %w%f $srcdir | while read -r FILE; do + case "$FILE" in + *consts.rs) + echo "--> patching $FILE" + sed -i '/pub type U1024/d;/pub type P1024/d' $FILE + echo "--> finished patching $FILE" + ;; + esac +done & +inotifywait=$(ps -ef | grep inotifywait | grep -v grep | tr -s ' ' | cut -d ' ' -f2) +echo "--> waiting for inotifywait $inotifywait" +wait "$inotifywait" +echo "--> watcher terminated" |