repo.or.cz
/
void-pkg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
clojure-lsp: update to 2024.08.05.
[void-pkg.git]
/
common
/
hooks
/
post-install
/
01-remove-misc.sh
blob
06e8c19473134340322aaf16bc7fb05f2cd19ba5
1
# hook to remove misc files.
2
hook
() {
3
case
"
$XBPS_TARGET_MACHINE
"
in
4
*
-musl
) ;;
5
*)
return
0
;;
6
esac
7
# Remove charset.alias on musl
8
if
[
-f
$PKGDESTDIR
/
usr
/
lib
/
charset.
alias
];
then
9
rm
-f
$PKGDESTDIR
/
usr
/
lib
/
charset.
alias
10
fi
11
}