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