forked from kiss-community/repo
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove XML documentation.
|
|
# False positive.
|
|
# shellcheck disable=2115
|
|
rm -rf "$1/usr/share"
|