8734e020db
build on x86_64-linux. svn path=/nixpkgs/trunk/; revision=12380
21 lines
391 B
Bash
21 lines
391 B
Bash
source $stdenv/setup
|
|
|
|
preConfigure=preConfigure
|
|
preConfigure() {
|
|
# "ijs" is impure: it contains symlinks to /usr/share/automake etc.!
|
|
rm -rf ijs/ltmain.sh
|
|
}
|
|
|
|
installPhase() {
|
|
make install install-so install-data install-doc install-man
|
|
}
|
|
|
|
postInstall=postInstall
|
|
postInstall() {
|
|
for i in $fonts; do
|
|
(cd $out/share/ghostscript && tar xvfz $i)
|
|
done
|
|
}
|
|
|
|
genericBuild
|