forked from kiss-community/repo
16 lines
246 B
Bash
Executable File
16 lines
246 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--shared-zlib \
|
|
--without-intl \
|
|
--without-etw \
|
|
--without-dtrace \
|
|
--without-report \
|
|
--ninja
|
|
|
|
ninja -C out/Release
|
|
tools/install.py install "$1" /usr
|