aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfenze <contact@fenze.dev>2023-02-07 12:48:14 +0100
committerGitHub <noreply@github.com>2023-02-07 12:48:14 +0100
commit1ba5fd7ecd81be1f54c812ac5e48eeff1652065b (patch)
treed5b0eef9ff7a7fb6bc528a99ed934e489a84a490
parent4e0b961fcb83e06c0375c45b4e63a809366dab02 (diff)
parent122437115dd0099246ce26866d808c75b36345b3 (diff)
Merge pull request #39 from davidovski/shell_fix
Remove bash-only features for sh scripts
-rwxr-xr-xbuild.sh10
-rwxr-xr-xrose-mklink8
2 files changed, 9 insertions, 9 deletions
diff --git a/build.sh b/build.sh
index 960eac8..11974c7 100755
--- a/build.sh
+++ b/build.sh
@@ -1,15 +1,15 @@
-#!/bin/bash
+#!/bin/sh
CC=clang
SRC=rose.c
REQS= #./plugins/*/*.c
-DEPS=('webkit2gtk-4.0')
+DEPS='webkit2gtk-4.0'
-INCS=`pkg-config --cflags ${DEPS[@]}`
-LIBS=`pkg-config --libs ${DEPS[@]}`
+INCS=`pkg-config --cflags ${DEPS}`
+LIBS=`pkg-config --libs ${DEPS}`
# Optional adblocking depends on https://github.com/jun7/wyebadblock
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
cp -f config.def.h config.h
-$CC $INCS $LIBS $REQS $SRC $WYEBAB -o rose
+$CC $INCS $REQS $SRC -o rose $LIBS $WYEBAB
diff --git a/rose-mklink b/rose-mklink
index 2aaba72..f016aae 100755
--- a/rose-mklink
+++ b/rose-mklink
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
test "$1" = "--help" || test -z "$1" && {
- echo -e "usage: rose-mklink <alias> <url>\n"
- echo "Create a /usr/bin link to a website."
+ printf "%s\n" "usage: rose-mklink <alias> <url>" \
+ "Create a /usr/bin link to a website."
exit
}
@@ -12,6 +12,6 @@ test -z "$2" || {
exit 1
}
- echo -e "#!/bin/sh\n\nrose $2" > /usr/bin/$1
+ printf "#!/bin/sh\n\nrose %s" "$2" > /usr/bin/$1
chmod +x /usr/bin/$1
}