12 lines
127 B
Bash
Executable File
12 lines
127 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-error-on-warning \
|
|
--disable-static
|
|
|
|
|
|
|
|
make
|
|
make DESTDIR="$1" install
|