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