17 lines
203 B
Bash
Executable File
17 lines
203 B
Bash
Executable File
#!/bin/sh -e
|
|
ls
|
|
aclocal
|
|
autoconf
|
|
libtoolize -qi
|
|
|
|
patch < musl.patch
|
|
|
|
sed -i 's|/doc/es\.1|/es\.1|g' Makefile.in
|
|
|
|
./configure \
|
|
--prefix="$1/usr" \
|
|
--with-readline
|
|
|
|
make
|
|
make DESTDIR="$1" install
|