12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
git submodule update --init
|
|
autoreconf
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib
|
|
|
|
make
|
|
make DESTDIR="$1" install
|