mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
- big rework of projects/*/options, config/options, config/path. - most configurable options now under project folder
31 lines
709 B
Bash
Executable File
31 lines
709 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build alsa-lib
|
|
$SCRIPTS/build ncurses
|
|
|
|
export CPPFLAGS="$CPPFLAGS -I$SYSROOT_PREFIX/usr/include/ncurses"
|
|
export LDFLAGS="$LDFLAGS -L$SYSROOT_PREFIX/usr/lib -L$SYSROOT_PREFIX/usr/lib64 -L$LIB_PREFIX/lib"
|
|
|
|
cd $PKG_BUILD
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-dependency-tracking \
|
|
--disable-xmlto \
|
|
--enable-alsamixer \
|
|
--enable-alsatest \
|
|
--disable-nls
|
|
|
|
make -C amixer
|
|
make -C alsactl
|
|
|
|
make -C alsamixer
|
|
make -C aplay
|
|
make -C iecset
|
|
make -C speaker-test
|