11 lines
110 B
Bash
Executable File
11 lines
110 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|