mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
26 lines
580 B
Bash
Executable File
26 lines
580 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
|
|
# dialog fails to build with GOLD linker
|
|
strip_gold
|
|
|
|
ac_cv_path_NCURSES_CONFIG="$ROOT/$TOOLCHAIN/bin/ncurses-config" \
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--disable-nls \
|
|
--without-dbmalloc \
|
|
--without-dmalloc \
|
|
--with-ncurses \
|
|
--disable-widec \
|
|
--disable-rc-file \
|
|
--disable-Xdialog \
|
|
--disable-form \
|
|
--disable-mixedform \
|
|
--disable-tailbox \
|
|
|
|
make
|