blob: 9cf4f6312ab6a1ac62478c6db8f95112cf760377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
### should create a symlink to ladspa in /opt/radium
### to get rid off the errormessage
post_install() {
ln -sf /usr/lib/ladspa /opt/radium/ladspa
}
pre_remove() {
rm /opt/radium/ladspa
}
|