From 76f47da37ee1ee4774481c69bcb06aca3cd866d9 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 20 Jun 2026 23:53:45 -0300 Subject: [PATCH] Remove unnecessary permissions in recipe executables --- recipes/wip/dev/build-system/ant/recipe.toml | 2 +- recipes/wip/dev/build-system/scala-cli/recipe.toml | 2 +- recipes/wip/dev/lang/java/openjdk11/recipe.toml | 2 +- recipes/wip/dev/lang/java/openjdk17/recipe.toml | 2 +- recipes/wip/dev/lang/java/openjdk21/recipe.toml | 2 +- recipes/wip/dev/lang/java/openjdk8/recipe.toml | 2 +- recipes/wip/dev/lang/kotlin/recipe.toml | 2 +- recipes/wip/emu/mobile/freej2me-plus/recipe.toml | 2 +- recipes/wip/emu/mobile/squirreljme/recipe.toml | 2 +- recipes/wip/emu/win/winetricks/recipe.toml | 2 +- recipes/wip/finance/crypto/bitcoin/electrum/recipe.toml | 2 +- recipes/wip/games/rts/mindustry-beta/recipe.toml | 2 +- recipes/wip/games/rts/mindustry/recipe.toml | 2 +- recipes/wip/image/other/lsix/recipe.toml | 2 +- recipes/wip/image/upscaling/video2x/recipe.toml | 2 +- recipes/wip/net/download/yt-dlp/recipe.toml | 2 +- recipes/wip/net/ssh/ssh-pilot/recipe.toml | 2 +- recipes/wip/net/torrent/webtorrent-cli/recipe.toml | 2 +- recipes/wip/sci/beagle/recipe.toml | 2 +- recipes/wip/sci/gaia-sky/recipe.toml | 2 +- recipes/wip/security/metasploit/recipe.toml | 2 +- recipes/wip/security/responder/recipe.toml | 2 +- recipes/wip/security/sqlmap/recipe.toml | 2 +- recipes/wip/storage/bleachbit/recipe.toml | 2 +- recipes/wip/sys-info/neofetch/recipe.toml | 2 +- recipes/wip/term/asciiquarium/recipe.toml | 2 +- recipes/wip/term/pipes-sh/recipe.toml | 2 +- recipes/wip/tools/ani-cli/recipe.toml | 2 +- recipes/wip/tools/ani-skip/recipe.toml | 2 +- recipes/wip/tools/dra-cla/recipe.toml | 2 +- recipes/wip/vid/editors/openshot/recipe.toml | 2 +- recipes/wip/vid/other/jerry/recipe.toml | 2 +- recipes/wip/vid/other/lobster/recipe.toml | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/recipes/wip/dev/build-system/ant/recipe.toml b/recipes/wip/dev/build-system/ant/recipe.toml index b2b1b7cf7..43bc9c75b 100644 --- a/recipes/wip/dev/build-system/ant/recipe.toml +++ b/recipes/wip/dev/build-system/ant/recipe.toml @@ -7,7 +7,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin/ant-dir" cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/bin/ant-dir" echo "/usr/bin/ant-dir/bin/ant" > "${COOKBOOK_STAGE}"/usr/bin/ant -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ant +chmod +x "${COOKBOOK_STAGE}"/usr/bin/ant """ [package] dependencies = ["openjdk21",] diff --git a/recipes/wip/dev/build-system/scala-cli/recipe.toml b/recipes/wip/dev/build-system/scala-cli/recipe.toml index f2943064e..0e910b1c8 100644 --- a/recipes/wip/dev/build-system/scala-cli/recipe.toml +++ b/recipes/wip/dev/build-system/scala-cli/recipe.toml @@ -5,7 +5,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin wget https://github.com/VirtusLab/scala-cli/releases/download/v1.12.1/scala-cli.jar "${COOKBOOK_STAGE}"/usr/bin echo "#!/usr/bin/env sh \n java -jar scala-cli.jar" > "${COOKBOOK_STAGE}"/usr/bin/scala-cli -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/scala-cli +chmod +x "${COOKBOOK_STAGE}"/usr/bin/scala-cli """ [package] dependencies = ["openjdk21"] diff --git a/recipes/wip/dev/lang/java/openjdk11/recipe.toml b/recipes/wip/dev/lang/java/openjdk11/recipe.toml index b24c06a02..7a7db0c44 100644 --- a/recipes/wip/dev/lang/java/openjdk11/recipe.toml +++ b/recipes/wip/dev/lang/java/openjdk11/recipe.toml @@ -4,7 +4,7 @@ git = "https://github.com/openjdk/jdk11u" rev = "jdk-11.0.29-ga" shallow_clone = true -script = "chmod a+x configure" +script = "chmod +x configure" [build] template = "configure" configureflags = [ diff --git a/recipes/wip/dev/lang/java/openjdk17/recipe.toml b/recipes/wip/dev/lang/java/openjdk17/recipe.toml index ef2d8f79a..c8eeca13c 100644 --- a/recipes/wip/dev/lang/java/openjdk17/recipe.toml +++ b/recipes/wip/dev/lang/java/openjdk17/recipe.toml @@ -4,7 +4,7 @@ git = "https://github.com/openjdk/jdk17u" rev = "jdk-17.0.17-ga" shallow_clone = true -script = "chmod a+x configure" +script = "chmod +x configure" [build] template = "configure" configureflags = [ diff --git a/recipes/wip/dev/lang/java/openjdk21/recipe.toml b/recipes/wip/dev/lang/java/openjdk21/recipe.toml index d7256e3a2..81aa9254c 100644 --- a/recipes/wip/dev/lang/java/openjdk21/recipe.toml +++ b/recipes/wip/dev/lang/java/openjdk21/recipe.toml @@ -4,7 +4,7 @@ git = "https://github.com/openjdk/jdk21u" rev = "jdk-21.0.9-ga" shallow_clone = true -script = "chmod a+x configure" +script = "chmod +x configure" [build] template = "configure" configureflags = [ diff --git a/recipes/wip/dev/lang/java/openjdk8/recipe.toml b/recipes/wip/dev/lang/java/openjdk8/recipe.toml index 958e8a5f0..3c7d3be45 100644 --- a/recipes/wip/dev/lang/java/openjdk8/recipe.toml +++ b/recipes/wip/dev/lang/java/openjdk8/recipe.toml @@ -4,7 +4,7 @@ git = "https://github.com/openjdk/jdk8u" rev = "jdk8u472-ga" shallow_clone = true -script = "chmod a+x configure" +script = "chmod +x configure" [build] template = "configure" configureflags = [ diff --git a/recipes/wip/dev/lang/kotlin/recipe.toml b/recipes/wip/dev/lang/kotlin/recipe.toml index b908c1732..13c76f8ca 100644 --- a/recipes/wip/dev/lang/kotlin/recipe.toml +++ b/recipes/wip/dev/lang/kotlin/recipe.toml @@ -7,7 +7,7 @@ wget https://github.com/JetBrains/kotlin/releases/download/v2.3.0/kotlin-compile unzip "${COOKBOOK_BUILD}"/kotlin-compiler-2.3.0.zip -d "${COOKBOOK_BUILD}" mv "${COOKBOOK_BUILD}"/kotlinc/* "${COOKBOOK_STAGE}/usr/bin/kotlin-dir" echo "/usr/bin/kotlin-dir/bin/kotlinc" > "${COOKBOOK_STAGE}"/usr/bin/kotlinc -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/kotlinc +chmod +x "${COOKBOOK_STAGE}"/usr/bin/kotlinc """ [package] dependencies = ["openjdk21"] diff --git a/recipes/wip/emu/mobile/freej2me-plus/recipe.toml b/recipes/wip/emu/mobile/freej2me-plus/recipe.toml index 07da4270d..9e2e1dda8 100644 --- a/recipes/wip/emu/mobile/freej2me-plus/recipe.toml +++ b/recipes/wip/emu/mobile/freej2me-plus/recipe.toml @@ -7,7 +7,7 @@ wget https://github.com/TASEmulators/freej2me-plus/releases/download/1.52/freej2 unzip "${COOKBOOK_BUILD}"/freej2me-v1.52.zip -d "${COOKBOOK_BUILD}" mv "${COOKBOOK_BUILD}"/*.jar "${COOKBOOK_STAGE}/usr/bin" echo "java -jar freej2me.jar" > "${COOKBOOK_STAGE}"/usr/bin/freej2me -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/freej2me +chmod +x "${COOKBOOK_STAGE}"/usr/bin/freej2me """ [package] dependencies = ["openjdk17.x11"] diff --git a/recipes/wip/emu/mobile/squirreljme/recipe.toml b/recipes/wip/emu/mobile/squirreljme/recipe.toml index a020ad786..2f68aa155 100644 --- a/recipes/wip/emu/mobile/squirreljme/recipe.toml +++ b/recipes/wip/emu/mobile/squirreljme/recipe.toml @@ -6,7 +6,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin" wget https://multiphasicapps.net/uv/unstable/0.3.0/squirreljme-standalone-0.3.0.jar "${COOKBOOK_STAGE}/usr/bin/squirreljme.jar" echo "java -jar squirreljme.jar" > "${COOKBOOK_STAGE}"/usr/bin/squirreljme -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/squirreljme +chmod +x "${COOKBOOK_STAGE}"/usr/bin/squirreljme """ [package] dependencies = ["openjdk17.x11"] diff --git a/recipes/wip/emu/win/winetricks/recipe.toml b/recipes/wip/emu/win/winetricks/recipe.toml index ef230a65a..0851afa28 100644 --- a/recipes/wip/emu/win/winetricks/recipe.toml +++ b/recipes/wip/emu/win/winetricks/recipe.toml @@ -11,7 +11,7 @@ cp -rv "${COOKBOOK_SOURCE}"/src/winetricks "${COOKBOOK_STAGE}/usr/bin" #mkdir -pv "${COOKBOOK_STAGE}/usr/bin/winetricks-dir" #cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/bin/winetricks-dir" #echo "/usr/bin/winetricks-dir/winetricks" > "${COOKBOOK_STAGE}"/usr/bin/winetricks -#chmod a+x "${COOKBOOK_STAGE}"/usr/bin/winetricks +#chmod +x "${COOKBOOK_STAGE}"/usr/bin/winetricks """ [package] dependencies = [ diff --git a/recipes/wip/finance/crypto/bitcoin/electrum/recipe.toml b/recipes/wip/finance/crypto/bitcoin/electrum/recipe.toml index fe4aea576..c20f28f50 100644 --- a/recipes/wip/finance/crypto/bitcoin/electrum/recipe.toml +++ b/recipes/wip/finance/crypto/bitcoin/electrum/recipe.toml @@ -8,5 +8,5 @@ mkdir -pv "${COOKBOOK_STAGE}"/usr/share/electrum mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/share/electrum echo "#!/usr/bin/env sh \n python3 /usr/share/electrum/run_electrum" > "${COOKBOOK_STAGE}"/usr/bin/electrum -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/electrum +chmod +x "${COOKBOOK_STAGE}"/usr/bin/electrum """ diff --git a/recipes/wip/games/rts/mindustry-beta/recipe.toml b/recipes/wip/games/rts/mindustry-beta/recipe.toml index 1a54756e2..3a4ec5256 100644 --- a/recipes/wip/games/rts/mindustry-beta/recipe.toml +++ b/recipes/wip/games/rts/mindustry-beta/recipe.toml @@ -5,7 +5,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin" wget https://github.com/Anuken/Mindustry/releases/download/v154.3/Mindustry.jar "${COOKBOOK_STAGE}/usr/bin" echo "#!/usr/bin/env sh \n java -jar /usr/bin/Mindustry.jar" > "${COOKBOOK_STAGE}"/usr/bin/mindustry -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/mindustry +chmod +x "${COOKBOOK_STAGE}"/usr/bin/mindustry """ [package] dependencies = ["openjdk17.x11"] diff --git a/recipes/wip/games/rts/mindustry/recipe.toml b/recipes/wip/games/rts/mindustry/recipe.toml index ea7dc882a..19e71f032 100644 --- a/recipes/wip/games/rts/mindustry/recipe.toml +++ b/recipes/wip/games/rts/mindustry/recipe.toml @@ -5,7 +5,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin" wget https://github.com/Anuken/Mindustry/releases/download/v146/Mindustry.jar "${COOKBOOK_STAGE}/usr/bin" echo "#!/usr/bin/env sh \n java -jar /usr/bin/Mindustry.jar" > "${COOKBOOK_STAGE}"/usr/bin/mindustry -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/mindustry +chmod +x "${COOKBOOK_STAGE}"/usr/bin/mindustry """ [package] dependencies = ["openjdk17.x11"] diff --git a/recipes/wip/image/other/lsix/recipe.toml b/recipes/wip/image/other/lsix/recipe.toml index b8fbaac93..ca03c28cc 100644 --- a/recipes/wip/image/other/lsix/recipe.toml +++ b/recipes/wip/image/other/lsix/recipe.toml @@ -6,5 +6,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/lsix "${COOKBOOK_STAGE}"/usr/bin/lsix -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/lsix +chmod +x "${COOKBOOK_STAGE}"/usr/bin/lsix """ diff --git a/recipes/wip/image/upscaling/video2x/recipe.toml b/recipes/wip/image/upscaling/video2x/recipe.toml index 91d28ed00..a591bee56 100644 --- a/recipes/wip/image/upscaling/video2x/recipe.toml +++ b/recipes/wip/image/upscaling/video2x/recipe.toml @@ -8,5 +8,5 @@ mkdir -pv "${COOKBOOK_STAGE}"/usr/share/video2x mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/share/video2x echo "#!/usr/bin/env sh \n cd /usr/share/video2x \n python3 -m video2x" > "${COOKBOOK_STAGE}"/usr/bin/video2x -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/video2x +chmod +x "${COOKBOOK_STAGE}"/usr/bin/video2x """ diff --git a/recipes/wip/net/download/yt-dlp/recipe.toml b/recipes/wip/net/download/yt-dlp/recipe.toml index 9e5b7ac42..04dd07872 100644 --- a/recipes/wip/net/download/yt-dlp/recipe.toml +++ b/recipes/wip/net/download/yt-dlp/recipe.toml @@ -7,5 +7,5 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/yt-dlp-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/yt-dlp-dir echo "/usr/bin/yt-dlp-dir/yt-dlp.sh" > "${COOKBOOK_STAGE}"/usr/bin/yt-dlp -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/yt-dlp-dir/yt-dlp.sh "${COOKBOOK_STAGE}"/usr/bin/yt-dlp +chmod +x "${COOKBOOK_STAGE}"/usr/bin/yt-dlp-dir/yt-dlp.sh "${COOKBOOK_STAGE}"/usr/bin/yt-dlp """ diff --git a/recipes/wip/net/ssh/ssh-pilot/recipe.toml b/recipes/wip/net/ssh/ssh-pilot/recipe.toml index ea9e5f401..cf9009e4f 100644 --- a/recipes/wip/net/ssh/ssh-pilot/recipe.toml +++ b/recipes/wip/net/ssh/ssh-pilot/recipe.toml @@ -9,7 +9,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/bin/ssh-pilot-dir" echo "python3 /usr/bin/ssh-pilot-dir/run.py" > "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot +chmod +x "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot """ [package] dependencies = [ diff --git a/recipes/wip/net/torrent/webtorrent-cli/recipe.toml b/recipes/wip/net/torrent/webtorrent-cli/recipe.toml index b8b513e3e..264a33154 100644 --- a/recipes/wip/net/torrent/webtorrent-cli/recipe.toml +++ b/recipes/wip/net/torrent/webtorrent-cli/recipe.toml @@ -9,7 +9,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/webtorrent-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/webtorrent-dir echo "#!/usr/bin/env sh \n cd /usr/bin/webtorrent-dir \n npx webtorrent-cli" > "${COOKBOOK_STAGE}"/usr/bin/webtorrent -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/webtorrent +chmod +x "${COOKBOOK_STAGE}"/usr/bin/webtorrent """ [package] dependencies = ["nodejs24"] diff --git a/recipes/wip/sci/beagle/recipe.toml b/recipes/wip/sci/beagle/recipe.toml index 0f35e9dc5..b9a3f31db 100644 --- a/recipes/wip/sci/beagle/recipe.toml +++ b/recipes/wip/sci/beagle/recipe.toml @@ -5,7 +5,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin" wget https://faculty.washington.edu/browning/beagle/beagle.27Feb25.75f.jar "${COOKBOOK_STAGE}"/usr/bin/beagle.jar echo "#!/usr/bin/env sh \n java -jar /usr/bin/beagle.jar" > "${COOKBOOK_STAGE}"/usr/bin/beagle -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/beagle +chmod +x "${COOKBOOK_STAGE}"/usr/bin/beagle """ [package] dependencies = ["openjdk17"] diff --git a/recipes/wip/sci/gaia-sky/recipe.toml b/recipes/wip/sci/gaia-sky/recipe.toml index 72584d948..0ed3ceceb 100644 --- a/recipes/wip/sci/gaia-sky/recipe.toml +++ b/recipes/wip/sci/gaia-sky/recipe.toml @@ -7,5 +7,5 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/gaia-sky-dir echo "gaia-sky-dir/gaia-sky" > "${COOKBOOK_STAGE}"/usr/bin/gaia-sky -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/gaia-sky +chmod +x "${COOKBOOK_STAGE}"/usr/bin/gaia-sky """ diff --git a/recipes/wip/security/metasploit/recipe.toml b/recipes/wip/security/metasploit/recipe.toml index 2cba5076c..9be3d1af5 100644 --- a/recipes/wip/security/metasploit/recipe.toml +++ b/recipes/wip/security/metasploit/recipe.toml @@ -10,7 +10,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/metasploit-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/metasploit-dir echo "metasploit-dir/msfconsole" > "${COOKBOOK_STAGE}"/usr/bin/metasploit -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/metasploit +chmod +x "${COOKBOOK_STAGE}"/usr/bin/metasploit """ [package] dependencies = [ diff --git a/recipes/wip/security/responder/recipe.toml b/recipes/wip/security/responder/recipe.toml index b96a7953d..c48f01d37 100644 --- a/recipes/wip/security/responder/recipe.toml +++ b/recipes/wip/security/responder/recipe.toml @@ -11,7 +11,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/responder-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/responder-dir echo "/usr/bin/responder-dir/Responder.py" > "${COOKBOOK_STAGE}"/usr/bin/responder -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/responder +chmod +x "${COOKBOOK_STAGE}"/usr/bin/responder """ [package] dependencies = [ diff --git a/recipes/wip/security/sqlmap/recipe.toml b/recipes/wip/security/sqlmap/recipe.toml index 12bd0033a..d2dbb2927 100644 --- a/recipes/wip/security/sqlmap/recipe.toml +++ b/recipes/wip/security/sqlmap/recipe.toml @@ -9,7 +9,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/sqlmap-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/sqlmap-dir echo "python3 /usr/bin/sqlmap-dir/sqlmap.py" > "${COOKBOOK_STAGE}"/usr/bin/sqlmap -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/sqlmap +chmod +x "${COOKBOOK_STAGE}"/usr/bin/sqlmap """ [package] dependencies = [ diff --git a/recipes/wip/storage/bleachbit/recipe.toml b/recipes/wip/storage/bleachbit/recipe.toml index 17ca4ee47..e26f0399d 100644 --- a/recipes/wip/storage/bleachbit/recipe.toml +++ b/recipes/wip/storage/bleachbit/recipe.toml @@ -8,7 +8,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/bleachbit-dir cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/usr/bin/bleachbit-dir echo "python3 bleachbit-dir/bleachbit.py" > "${COOKBOOK_STAGE}"/usr/bin/bleachbit -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/bleachbit +chmod +x "${COOKBOOK_STAGE}"/usr/bin/bleachbit """ [package] dependencies = [ diff --git a/recipes/wip/sys-info/neofetch/recipe.toml b/recipes/wip/sys-info/neofetch/recipe.toml index f1438fbd2..a93875549 100644 --- a/recipes/wip/sys-info/neofetch/recipe.toml +++ b/recipes/wip/sys-info/neofetch/recipe.toml @@ -7,5 +7,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/neofetch "${COOKBOOK_STAGE}"/usr/bin/neofetch -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/neofetch +chmod +x "${COOKBOOK_STAGE}"/usr/bin/neofetch """ diff --git a/recipes/wip/term/asciiquarium/recipe.toml b/recipes/wip/term/asciiquarium/recipe.toml index 3bf31400b..0d2f3838d 100644 --- a/recipes/wip/term/asciiquarium/recipe.toml +++ b/recipes/wip/term/asciiquarium/recipe.toml @@ -6,7 +6,7 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/asciiquarium "${COOKBOOK_STAGE}"/usr/bin/asciiquarium -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/asciiquarium +chmod +x "${COOKBOOK_STAGE}"/usr/bin/asciiquarium """ [package] dependencies = [ diff --git a/recipes/wip/term/pipes-sh/recipe.toml b/recipes/wip/term/pipes-sh/recipe.toml index 30b494cc7..1b07119eb 100644 --- a/recipes/wip/term/pipes-sh/recipe.toml +++ b/recipes/wip/term/pipes-sh/recipe.toml @@ -7,7 +7,7 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/pipes.sh "${COOKBOOK_STAGE}"/usr/bin/pipes -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/pipes +chmod +x "${COOKBOOK_STAGE}"/usr/bin/pipes """ [package] dependencies = [ diff --git a/recipes/wip/tools/ani-cli/recipe.toml b/recipes/wip/tools/ani-cli/recipe.toml index bac9aae43..8cbb6782e 100644 --- a/recipes/wip/tools/ani-cli/recipe.toml +++ b/recipes/wip/tools/ani-cli/recipe.toml @@ -7,5 +7,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/ani-cli "${COOKBOOK_STAGE}"/usr/bin/ani-cli -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ani-cli +chmod +x "${COOKBOOK_STAGE}"/usr/bin/ani-cli """ diff --git a/recipes/wip/tools/ani-skip/recipe.toml b/recipes/wip/tools/ani-skip/recipe.toml index 7af44b1f1..681e12467 100644 --- a/recipes/wip/tools/ani-skip/recipe.toml +++ b/recipes/wip/tools/ani-skip/recipe.toml @@ -8,5 +8,5 @@ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin mkdir -pv "${COOKBOOK_STAGE}"/home/user/.config/mpv/scripts cp "${COOKBOOK_SOURCE}"/ani-skip "${COOKBOOK_STAGE}"/usr/bin/ani-skip cp "${COOKBOOK_SOURCE}"/skip.lua "${COOKBOOK_STAGE}"/home/user/.config/mpv/scripts -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ani-skip +chmod +x "${COOKBOOK_STAGE}"/usr/bin/ani-skip """ diff --git a/recipes/wip/tools/dra-cla/recipe.toml b/recipes/wip/tools/dra-cla/recipe.toml index aaf4c0874..06654383f 100644 --- a/recipes/wip/tools/dra-cla/recipe.toml +++ b/recipes/wip/tools/dra-cla/recipe.toml @@ -6,5 +6,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/dra-cla "${COOKBOOK_STAGE}"/usr/bin/dra-cla -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/dra-cla +chmod +x "${COOKBOOK_STAGE}"/usr/bin/dra-cla """ diff --git a/recipes/wip/vid/editors/openshot/recipe.toml b/recipes/wip/vid/editors/openshot/recipe.toml index 9a9fe1424..2f7e4a01a 100644 --- a/recipes/wip/vid/editors/openshot/recipe.toml +++ b/recipes/wip/vid/editors/openshot/recipe.toml @@ -10,7 +10,7 @@ script = """ mkdir -pv "${COOKBOOK_STAGE}/usr/bin/openshot-qt" cp -rv "${COOKBOOK_SOURCE}"/src/* "${COOKBOOK_STAGE}/usr/bin/openshot-qt" echo "#!/usr/bin/env sh \n python3 /usr/bin/openshot-qt/src/launch.py" > "${COOKBOOK_STAGE}"/usr/bin/openshot -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/openshot +chmod +x "${COOKBOOK_STAGE}"/usr/bin/openshot """ [package] dependencies = [ diff --git a/recipes/wip/vid/other/jerry/recipe.toml b/recipes/wip/vid/other/jerry/recipe.toml index df199fc5c..3c7ea14a9 100644 --- a/recipes/wip/vid/other/jerry/recipe.toml +++ b/recipes/wip/vid/other/jerry/recipe.toml @@ -7,7 +7,7 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/jerry.sh "${COOKBOOK_STAGE}"/usr/bin/jerry -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/jerry +chmod +x "${COOKBOOK_STAGE}"/usr/bin/jerry """ [package] dependencies = [ diff --git a/recipes/wip/vid/other/lobster/recipe.toml b/recipes/wip/vid/other/lobster/recipe.toml index 8933315e1..735292ddc 100644 --- a/recipes/wip/vid/other/lobster/recipe.toml +++ b/recipes/wip/vid/other/lobster/recipe.toml @@ -6,5 +6,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}"/usr/bin cp "${COOKBOOK_SOURCE}"/lobster.sh "${COOKBOOK_STAGE}"/usr/bin/lobster -chmod a+x "${COOKBOOK_STAGE}"/usr/bin/lobster +chmod +x "${COOKBOOK_STAGE}"/usr/bin/lobster """