10 lines
156 B
Bash
10 lines
156 B
Bash
|
. $stdenv/setup
|
||
|
|
||
|
postInstall=postInstall
|
||
|
postInstall() {
|
||
|
for i in $fonts; do
|
||
|
(cd $out/share/ghostscript && tar xvfz $i)
|
||
|
done
|
||
|
}
|
||
|
|
||
|
genericBuild
|