updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / shrew-vpn-client-unstable / shrew-vpn-client.install
blob1817993c9bccf38b05e0c5ac7073fea66ccc4331
1 # This program depends on libcrypto 0.9.8, but works fine with 1.0.0.
2 # Therefore, we need to create a link to the new binary.
3 post_install() {
4   ln -s -f /usr/lib/libcrypto.so /usr/lib/libcrypto.so.0.9.8
8 # If the created link still exists on removal, remove it as well.
9 post_remove() {
10   if [ -L /usr/lib/libcrypto.so.0.9.8 ]; then
11     rm /usr/lib/libcrypto.so.0.9.8
12   fi
16 # vim:set ts=2 sw=2 et: