Files
nixpkgs/pkgs/misc/ghostscript/builder.sh
T

17 lines
306 B
Bash
Raw Normal View History

2005-12-05 14:11:09 +00:00
source $stdenv/setup
2005-04-29 13:23:15 +00:00
2006-09-04 11:01:37 +00:00
preConfigure=preConfigure
preConfigure() {
# "ijs" is impure: it contains symlinks to /usr/share/automake etc.!
rm -rf ijs/ltmain.sh
}
2005-04-29 13:23:15 +00:00
postInstall=postInstall
postInstall() {
for i in $fonts; do
(cd $out/share/ghostscript && tar xvfz $i)
done
}
2006-09-04 11:01:37 +00:00
genericBuild