51ca4a6a91
svn path=/nixpkgs/trunk/; revision=6452
17 lines
306 B
Bash
17 lines
306 B
Bash
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
|