6 lines
77 B
Plaintext
6 lines
77 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .
|
||
|
|
||
|
make DESTDIR="$1" install
|