forked from kiss-community/repo
12 lines
135 B
Bash
Executable File
12 lines
135 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export CFLAGS="$CFLAGS -fPIC"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib \
|
|
--shared
|
|
|
|
make
|
|
make install
|