10 lines
178 B
Text
10 lines
178 B
Text
|
#!/bin/sh
|
||
|
|
||
|
post_install() {
|
||
|
echo '/usr/lib/libfakeroot' >>/etc/ld-musl-$(uname -m).path
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
sed -i '/^\/usr\/lib\/libfakeroot$/d' /etc/ld-musl-$(uname -m).path
|
||
|
}
|