Files
Arch-R/packages/sysutils/lirc/build
Stephan Raue 4fd9fd3c3f lirc:
- rework of init scripts
- various cleanups
2009-11-06 15:26:49 +01:00

37 lines
789 B
Bash
Executable File

#!/bin/sh
. config/options
$SCRIPTS/build toolchain
$SCRIPTS/build linux
# $SCRIPTS/build libirman
if [ "$DEBUG" = yes ]; then
DEBUG_CONFIG="--enable-debug --disable-stripping"
else
DEBUG_CONFIG="--disable-debug --enable-stripping"
fi
export ac_cv_path_LIBUSB_CONFIG=
export ac_cv_func_forkpty=no
export ac_cv_lib_util_forkpty=no
export MAKEFLAGS=-j1
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--disable-shared \
--enable-sandboxed \
--without-x \
--with-driver=$RECEIVER \
--with-port=0x3f8 \
--with-irq=4 \
--with-kerneldir=$(kernel_path) \
$DEBUG_CONFIG
make
$MAKEINSTALL -C tools