blob: 361d71261bf4b314d50fd7f0737873e459e4320a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--build=x86_64-pc-linux-musl \
--host=x86_64-pc-linux-musl \
--enable-targets=x86_64-pep \
--disable-multilib \
--disable-werror \
--with-mmap \
--with-system-zlib
make
make DESTDIR="$1" install
|