DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T U

⟦bd34fd304⟧ TextFile

    Length: 2314 (0x90a)
    Types: TextFile
    Names: »Unix-setup«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/TeXcontrib/tib/Unix-setup« 
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/TeXcontrib/tib/Unix-setup« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXcontrib/tib/Unix-setup« 

TextFile

#!/bin/sh
#
# You certainly don't have to use the directories specified below
# for your installation, but you may find that this organization
# is convenient, or that a couple of simple editing steps performed
# on this file will make things easier.  The references are to the
# INSTALL file in this directory.
#
# we assume you are in a directory named "tib" or something like.
# If you change any of the following four lines, you will have to
# make corrections throughout this file.  "tib" doesn't have to
# be a part of /usr/local/lib/tex yet.  You can move it there with
# tar, later on.  You may want to put tib/src somewhere else entirely.
#
mkdir src
mkdir inputs
mkdir doc
mkdir index
#
# INSTALL, section 2.a
#
echo "Replacing AAAAA ..... FFFFF with paths and filenames"
sed -e 's|AAAAA|/usr/local/lib/tex/tib/doc|' \
	-e 's|BBBBB|/usr/local/lib/tex/tib/inputs|' \
	-e 's|CCCCC|/usr/local/lib/tex/tib/index/common|' \
         tibdoc.tex > doc/tibdoc.tex
mv tibdoc.tex \#tibdoc.tex\#
#
# INSTALL, section 2.b
#
sed -e 's|AAAAA|/usr/local/lib/tex/tib/doc|g' \
	-e 's|BBBBB|/usr/local/lib/tex/tib/inputs|' \
	-e 's|CCCCC|/usr/local/lib/tex/tib/index/common|' \
	-e 's|EEEEE|/usr/local/lib/tex/tib/src|' \
	-e 's|FFFFF|/usr/local/lib/tex/tib/index/INDEX|' tib.man > doc/tib.1
mv tib.man \#tib.man\#
#
# INSTALL, section 2.c
#
sed -e 's|AAAAA|/usr/local/lib/tex/tib/doc|g' intro.tib > doc/intro.tib
mv intro.tib \#intro.tib\#
#
# INSTALL, section 2.d
#
sed 	-e 's|BBBBB|/usr/local/lib/tex/tib/inputs|' \
	-e 's|CCCCC|/usr/local/lib/tex/tib/index/common|' \
	-e 's|FFFFF|/usr/local/lib/tex/tib/index/INDEX|' tib.h > src/tib.h
mv tib.h \#tib.h\#
#
# INSTALL, section 2.e and give makefile proper reference to manual page
#
sed -e 's|DDDDD|/usr/local/bin|' \
	-e 's|tib.man|../doc/tib.1|' Makefile > src/Makefile
mv Makefile \#Makefile\#
#
# INSTALL, section 6
#
echo "Filling the documentation directory"
mv *.tex ./doc
mv Styles ./doc
#
# INSTALL, section 7
#
echo "Filling the inputs directory"
mv *.tib ./inputs
mv *.ttx ./inputs
mv *.ttz ./inputs
#
# INSTALL, section 8
#
echo "Filling the index directory"
mv common ./index
#
# INSTALL, section 9
#
echo "Filling the program source directory"
mv *.c ./src
#
echo "Now cd to the program source directory"
echo "check INSTALL sections 3-4, and make all"
#