diff --git a/packaging/arch/build.sh b/packaging/arch/build.sh new file mode 100755 index 0000000..80730bc --- /dev/null +++ b/packaging/arch/build.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e + +# Fix permissions for the mounted volume +sudo chown -R build:build /home/build/project + +# Navigate to the build directory +cd /home/build/project + +# Run makepkg as the build user +sudo -u build makepkg -s --noconfirm +