11 lines
232 B
Bash
Executable File
11 lines
232 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Amend install path to '/usr'.
|
|
sed -i'' "s#/usr/local#/usr#" config.mk
|
|
|
|
# Remove pixel gap.
|
|
sed -i'' "s/static const int resizehints = 1/static const int resizehints = 0/" config.def.h
|
|
|
|
make
|
|
make DESTDIR="$1" install
|