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

15 lines
258 B
Bash
Raw Normal View History

2024-03-30 14:09:59 +01:00
#!/bin/bash
2024-03-29 23:19:21 +01:00
for xbps_pkg in $(ls -1 ./srcpkgs); do
2024-03-30 14:09:59 +01:00
if [[ "$xbps_pkg" == "xbps-triggers" ]]; then
continue
fi
if grep -q "restricted=yes" ./srcpkgs/${xbps_pkg}/template; then
# license :(
continue
fi
2024-03-29 23:16:40 +01:00
./xbps-src pkg -Q ${xbps_pkg} || exit 1
done