forked from kiss-community/repo
15 lines
281 B
Bash
Executable File
15 lines
281 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Disable documentation (READMEs and such).
|
|
sed 's/^\(dist_doc_DATA\)/\1_null/' Makefile.in > _
|
|
mv -f _ Makefile.in
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--mandir=/usr/share/man \
|
|
--enable-compat-symlinks
|
|
|
|
make
|
|
make DESTDIR="$1" install
|