mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
20 lines
297 B
Bash
Executable File
20 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
$SCRIPTS/unpack libxml2
|
|
|
|
setup_toolchain host
|
|
|
|
cd $BUILD/libxml2-*
|
|
|
|
do_autoreconf
|
|
mkdir -p .build-host && cd .build-host
|
|
../configure --prefix=$ROOT/$TOOLCHAIN \
|
|
--disable-ipv6 \
|
|
--with-python \
|
|
--with-zlib
|
|
|
|
make
|
|
make install
|