Files
Arch-R/packages/sysutils/remote/lirc/build
Stephan Raue 1b002904a1 lirc:
- remove link time optimization hack (not more needed)
2010-06-14 01:29:08 +02:00

33 lines
637 B
Bash
Executable File

#!/bin/sh
. config/options
$SCRIPTS/build toolchain
if [ "$DEBUG" = yes ]; then
DEBUG_CONFIG="--enable-debug"
else
DEBUG_CONFIG="--disable-debug"
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=userspace \
--with-syslog=LOG_DAEMON \
$DEBUG_CONFIG
make
$MAKEINSTALL -C tools