12 lines
133 B
Bash
Executable File
12 lines
133 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch < musl.patch
|
|
|
|
sed -i 's|/doc/es\.1|/es\.1|g' Makefile.in
|
|
|
|
./configure \
|
|
--prefix="$1/usr"
|
|
|
|
make
|
|
make install
|