9 lines
110 B
Bash
Executable File
9 lines
110 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc
|
|
|
|
make -j1
|
|
make -j1 DESTDIR="$1" install
|