post_install() {
if [ -e "/system/lib/libvulkan.so" ]; then
echo "Symlink /system/lib/libvulkan.so to /data/data/com.termux/files/usr/lib/libvulkan.so ..."
ln -fsT "/system/lib/libvulkan.so" "/data/data/com.termux/files/usr/lib/libvulkan.so"
fi
}
post_remove() {
rm -f "/data/data/com.termux/files/usr/lib/libvulkan.so"
}
