|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 384 (0x180) Types: TextFile Names: »build-install«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/gnu-31mar87/emacs/build-install«
#!/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}