3c7826010c
svn path=/nixpkgs/trunk/; revision=9126
13 lines
184 B
Bash
13 lines
184 B
Bash
source $stdenv/setup
|
|
|
|
buildPhase=true
|
|
|
|
installPhase=myInstallPhase
|
|
myInstallPhase() {
|
|
ensureDir $out/xml/xsl
|
|
cd ..
|
|
mv docbook-xsl-ns-* $out/xml/xsl/docbook
|
|
}
|
|
|
|
genericBuild
|