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 b

⟦cf516f1d8⟧ TextFile

    Length: 665 (0x299)
    Types: TextFile
    Names: »build-install«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦46d41b2d0⟧ »./emacs-18.55.tar.Z« 
        └─⟦fa971747f⟧ 
            └─⟦this⟧ »dist-18.55/build-install« 

TextFile

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

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

/bin/sed "s;/usr/local/emacs;$EMACS;" < src/paths.h-dist > src/paths.h

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

if (`pwd` != `(cd $EMACS; pwd)`) then
  mv `pwd` $EMACS
  if ($status) then
    mkdir $EMACS
    echo mv `pwd` to $EMACS failed--using tar to copy.
    tar cf - . | (cd $EMACS; umask 0; tar xf -)
    if ($status) then
      echo tar-copying `pwd` to $EMACS failed.
      exit 1
    endif
  endif
endif

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