mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
accbf1791f
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>
12 lines
188 B
Bash
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
|