I'm downloading libs from repository as name.so.version
SRC_URI_x86-64 = "fetch location"
do_install() {
install -d ${D}${libdir}
for file in ${WORKDIR}/location/lib*;do
install -m 0644 $file ${D}${libdir}
done
}
how can I in addition to coping the original files generate symbolic link filename.so to each of the files?
Thanks.