Tidy
From CBLFS
Jump to navigationJump to searchDownload Source: | http://tidy.sourceforge.net/src/tidy_src_051026.tgz |
---|---|
Optional Documentation: | http://tidy.sourceforge.net/docs/tidy_docs_051020.tgz |
Required Patch: | http://svn.cross-lfs.org/svn/repos/patches/tidy/tidy-051026-prevent_PRE_newlines-1.patch |
Contents
Dependencies
Recomended
- LibXSLT (To Build the Man Page and Quick Reference Docs)
Optional
The HTML Tidy documentation is contained in a separate tarball. Unpack both the source and docs tarballs before starting the build.
Non-Multilib
Compile the package:
patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch && sh build/gnuauto/setup.sh && ./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch && sh build/gnuauto/setup.sh && CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch && sh build/gnuauto/setup.sh && CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch && sh build/gnuauto/setup.sh && CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install
Documentation
If you have LibXSLT installed run the following command to build the man page and HTML documentation:
cd htmldoc && tidy -xml-help > tidy-help.xml && tidy -xml-config > tidy-config.xml && xsltproc -o tidy.1 tidy1.xsl tidy-help.xml && xsltproc -o quickref.html quickref-html.xsl tidy-config.xml && cd ..
Install the man page:
install -v -m644 htmldoc/tidy.1 /usr/share/man/man1
Install the HTML documentation:
install -v -m755 -d /usr/share/doc/tidy-051020 && cp -v -R htmldoc/* /usr/share/doc/tidy-051020