summary refs log blame commit diff
path: root/pkgs/build-support/setup-hooks/move-docs.sh
blob: 3f961155d201ac3d9e76c48cec7fafdde685386a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                                          
 
                             
 
                







                                                  
                                       
 
                                   

                                           

                                                    


                                                      



              
# This setup hook moves $out/{man,doc,info} to $out/share.

preFixupHooks+=(_moveToShare)

_moveToShare() {
    if [ -n "$__structuredAttrs" ]; then
        if [ -z "${forceShare-}" ]; then
            forceShare=( man doc info )
        fi
    else
        forceShare=( ${forceShare:-man doc info} )
    fi

    if [[ -z "$out" ]]; then return; fi

    for d in "${forceShare[@]}"; do
        if [ -d "$out/$d" ]; then
            if [ -d "$out/share/$d" ]; then
                echo "both $d/ and share/$d/ exist!"
            else
                echo "moving $out/$d to $out/share/$d"
                mkdir -p $out/share
                mv $out/$d $out/share/
            fi
        fi
    done
}