2021-05-09 03:10:08 -03:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-05-15 18:52:30 +00:00
|
|
|
# Patch Clock.c to compile with other Xaws
|
2021-05-20 00:33:40 +00:00
|
|
|
sed -e 's/XpmReadFileToPixmap(dpy, RootWindowOfScreen(screen), name, &pmap,//g' Clock.c | sed -e 's/&shapemask, NULL);//g' > Clock.c.new ; mv Clock.c.new Clock.c
|
2021-05-15 18:52:30 +00:00
|
|
|
|
2021-05-11 01:07:37 -03:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr
|
2021-05-09 03:10:08 -03:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|