From 0d1c9f0ce122ecef263aaef7e42651ba5b109f02 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sat, 10 Mar 2018 11:04:42 +0000 Subject: [PATCH] Now libuv has a version string starting with"v" --- pkgmngt/packInstall.sh.porg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgmngt/packInstall.sh.porg b/pkgmngt/packInstall.sh.porg index c16dbe2..e8ff2fb 100644 --- a/pkgmngt/packInstall.sh.porg +++ b/pkgmngt/packInstall.sh.porg @@ -72,6 +72,9 @@ case $1 in x265*) # can contain vd.d or just d.d: thanks to packagers VERSION=$(echo $1 | sed 's/^.*[v_]//') ;; + libuv*) # can contain -vd.d or just -d.d + VERSION=$(echo $1 | sed 's/^.*[v-]//') + ;; *) VERSION=$(echo $1 | sed 's/^.*[-_]\([0-9]\)/\1/' | sed 's/_/./g') ;;