1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 20:13:19 +02:00
void-packages/common/hypa/build.sh

14 lines
258 B
Bash
Executable file

#!/bin/bash
for xbps_pkg in $(ls -1 ./srcpkgs); do
if [[ "$xbps_pkg" == "xbps-triggers" ]]; then
continue
fi
if grep -q "restricted=yes" ./srcpkgs/${xbps_pkg}/template; then
# license :(
continue
fi
./xbps-src pkg -Q ${xbps_pkg} || exit 1
done