pkgs/fakeroot/fakeroot.install

10 lines
178 B
Text
Raw Permalink Normal View History

2023-12-11 13:18:00 +00:00
#!/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
}