post_install() {
    :
#!/bin/bash

# Link to the binary
ln -sf '/opt/electron-ssr/electron-ssr' '/usr/local/bin/electron-ssr'

}
post_remove() {
    :
#!/bin/bash

# Delete the link to the binary
rm -f '/usr/local/bin/electron-ssr'

}
