mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
29 lines
544 B
Bash
Executable File
29 lines
544 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/unpack glib
|
|
|
|
setup_toolchain host
|
|
|
|
cd $BUILD/glib*
|
|
|
|
mkdir -p .build-host
|
|
|
|
cd .build-host
|
|
../configure --prefix=$ROOT/$TOOLCHAIN \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--with-libiconv=no \
|
|
--enable-debug=no \
|
|
--disable-man \
|
|
--disable-rebuilds \
|
|
--disable-gtk-doc \
|
|
|
|
make
|
|
make install
|
|
|
|
cp -f gobject/.libs/glib-genmarshal $ROOT/$TOOLCHAIN/bin
|
|
cp -f gobject/glib-mkenums $ROOT/$TOOLCHAIN/bin
|