source: common/blfs-tool-deps/903-tidy@ 4fef116

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 4fef116 was 91ff6a9, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Replaced /bin/sh by /bin/bash

  • Property mode set to 100644
File size: 547 bytes
Line 
1#!/bin/bash
2
3# $Id$
4
5set -e
6cd $PKGDIR
7
8patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch
9sh build/gnuauto/setup.sh
10./configure --prefix=/usr
11make
12make install
13(cd ../ && tar -xvf tidy_docs_051020.tgz)
14cd htmldoc
15tidy -xml-help > tidy-help.xml
16tidy -xml-config > tidy-config.xml
17xsltproc -o tidy.1 tidy1.xsl tidy-help.xml
18xsltproc -o quickref.html quickref-html.xsl tidy-config.xml
19cd ..
20install -v -m644 htmldoc/tidy.1 /usr/share/man/man1
21install -v -m755 -d /usr/share/doc/tidy-051020
22cp -v -R htmldoc/* /usr/share/doc/tidy-051020
23
24exit
Note: See TracBrowser for help on using the repository browser.