summarylogtreecommitdiffstats
path: root/micropad.install
blob: a58809ee6d4431bfa7a165b7c686533adb27320b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    :
#!/bin/bash

# Link to the binary
ln -sf '/opt/µPad/micropad' '/usr/local/bin/micropad'

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

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

}