docbook5: Install a catalog.xml

This commit is contained in:
Eelco Dolstra 2014-11-25 15:43:04 +01:00
parent 5c01205bf7
commit 9adc6fe276
2 changed files with 25 additions and 20 deletions

View file

@ -1,17 +0,0 @@
source $stdenv/setup
unpackFile $src
cd docbook-*
mkdir -p $out/xml/rng
cp -prv rng $out/xml/rng/docbook
mkdir -p $out/xml/dtd
cp -prv dtd $out/xml/dtd/docbook
mkdir -p $out/share/doc
cp -prv docs $out/share/doc/docbook
mkdir -p $out/share/docbook
cp -prv tools $out/share/docbook/

View file

@ -1,13 +1,35 @@
{stdenv, fetchurl, unzip}:
{ lib, stdenv, fetchurl, unzip }:
stdenv.mkDerivation {
name = "docbook5-5.0";
builder = ./builder.sh;
src = fetchurl {
url = http://www.docbook.org/xml/5.0/docbook-5.0.zip;
sha256 = "13i04dkd709f0p5f2413sf2y9321pfi4y85ynf8wih6ryphnbk9x";
};
buildInputs = [unzip];
buildInputs = [ unzip ];
installPhase =
''
dst=$out/share/xml/docbook-5.0
mkdir -p $dst
cp -prv * $dst/
substituteInPlace $dst/catalog.xml --replace 'uri="' "uri=\"$dst/"
rm -rf $dst/docs $dst/ChangeLog
# Backwards compatibility. Will remove eventually.
mkdir -p $out/xml/rng $out/xml/dtd
ln -s $dst/rng $out/xml/rng/docbook
ln -s $dst/dtd $out/xml/dtd/docbook
'';
meta = {
description = "Schemas for DocBook 5.0, a semantic markup language for technical documentation";
homepage = http://docbook.org/xml/5.0/;
maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.all;
};
}