summary refs log tree commit diff
path: root/pkgs/misc/ghostscript/builder.sh
blob: 734738140d8a4ca4fb10cf379423a96775175f95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source $stdenv/setup

preConfigure=preConfigure
preConfigure() {
    # "ijs" is impure: it contains symlinks to /usr/share/automake etc.!
    rm -rf ijs/ltmain.sh
}

postInstall=postInstall
postInstall() {
    for i in $fonts; do
        (cd $out/share/ghostscript && tar xvfz $i)
    done
}

genericBuild