Files
packages/libs/libupnpp/test.sh
T
Alexandru Ardelean accbf1791f libupnpp: update to 1.0.4
Update from 0.26.5 to 1.0.4 (major version jump 0.x -> 1.x).

Changes:
- Add +libcurl to DEPENDS: libupnpp 1.0.4 introduced a new mandatory
  dependency on libcurl (used for HTTP/SOAP communications)
- Build system remains meson (already in use)
- No patches needed

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-05-22 06:57:39 +03:00

12 lines
188 B
Bash

#!/bin/sh
case "$1" in
libupnpp)
ls /usr/lib/libupnpp.so.* >/dev/null 2>&1 || {
echo "FAIL: libupnpp shared library not found in /usr/lib"
exit 1
}
echo "libupnpp.so: OK"
;;
esac