10 lines
278 B
Bash
Executable File
10 lines
278 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Adding this patch forces the libXft dependency, but the upstream (git) already
|
|
# uses it. It is also much better than the ancient# logical X font description.
|
|
patch -p1 < tabbed-0.6-xft.diff
|
|
|
|
${EDITOR:=vi} config.def.h
|
|
make
|
|
make DESTDIR="$1" PREFIX=/usr install
|