11 lines
179 B
Bash
Executable File
11 lines
179 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
# Specify the library path for linkers like `lld`.
|
|
sed -i 's/"ld",/& "-L", "\/usr\/lib",/' config.h
|
|
|
|
make
|
|
make DESTDIR="$1" install
|