pkg2appimage
pkg2appimage copied to clipboard
excludelist not entirely removed
The items such as libcom_err.so.2 or libz.so.1 that are on the list will be removed, but libcom_err.so.2.1 and libz.so.1.2.8 will remain in the AppImage.
Maybe using regular expression could help:
$ FILE=libX11.so.6 ; find /usr/lib/* -xtype f -regextype egrep -regex "^.*/$FILE(\$|[\.0-9]+\$)"
/usr/lib/i386-linux-gnu/libX11.so.6
/usr/lib/i386-linux-gnu/libX11.so.6.3.0
/usr/lib/x86_64-linux-gnu/libX11.so.6
/usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
Thanks @darealshinji, good idea, PR welcome.
Is this fixed by now?