Files
Arch-R/packages/sysutils/lirc/build
Stephan Raue d6b023d734 lirc:
- update to lirc-20100104
- some cleanups
2010-01-04 03:56:35 +01:00

36 lines
763 B
Bash
Executable File

#!/bin/sh
. config/options
$SCRIPTS/build toolchain
$SCRIPTS/build linux
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