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 - download

⟦860f77b03⟧ TextFile

    Length: 384 (0x180)
    Types: TextFile
    Names: »build-install«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/build-install« 

TextFile

#!/bin/csh -fx
#
#Shell script for building and installing Emacs.

set EMACS=/usr/local/emacs
set BIN=/usr/local/bin

(cd etc; make) || exit 1
(cd src; make) || exit 1

if mv `pwd` $EMACS;then
else
 mkdir $EMACS
 tar cf - . | (cd $EMACS; tar xfp -)
 rm -rf *
fi

cp $EMACS/etc/{ctags,etags} $BIN
mv $EMACS/src/xemacs $BIN/emacs
rm $EMACS/src/temacs
chmod 777 $BIN/{ctags,etags,emacs}