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
Index: ┃ T U

⟦ff4ea5acc⟧ TextFile

    Length: 573 (0x23d)
    Types: TextFile
    Names: »UPGRADE«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/new_curses/UPGRADE« 

TextFile

#! /bin/sh
CURSRC=/usr/src/usr.lib/libcurses

echo 'Copying in the 4.2 BSD libcurses'
(cd $CURSRC; tar cf - .) | tar xvpf -

echo 'Replacing modules:'
for i in *.new
do
	echo " $i"
	mv `basename $i .new` `basename $i .new`.orig
	cp $i `basename $i .new`
done
echo ' '

echo 'Patching modules:'
for i in *.pat
do
	echo " $i"
	patch `basename $i .pat` $i
done
echo ' '

echo 'Done'

echo 'To compile, "make"'
echo 'To install, "make install"'
echo '(But first save the old /usr/include/curses.h and /usr/lib/libcurs*)'
echo 'To clean up, "make clean; rm *.orig *.new *.pat"'