[go: up one dir, main page]

Menu

[db5684]: / INSTALL  Maximize  Restore  History

Download this file

24 lines (16 with data), 447 Bytes

Until this is set up as a proper CPAN module do the following:

Install it in some dir, such as /usr/local:

	cd /usr/local
	sudo tar xf $PATH_TO_TARBALL

And then use this script called isy_util linked to isy_rest:

-----
#!/bin/sh

LIBDIR=/usr/local/isyutil/Device-ISY/lib
BINDIR=/usr/local/isyutil/Device-ISY/bin

DEBUG=
if [ "$1" = "-d" ]; then
    DEBUG="-d"
    shift
fi

exec perl ${DEBUG} -I${LIBDIR} ${BINDIR}/$(basename $0) "${@}"
-----