11 lines
135 B
Bash
Executable File
11 lines
135 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export CFLAGS="$CFLAGS -fPIC"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib \
|
|
|
|
make
|
|
make DESTDIR="$1" install
|