diff --git a/expect-5.44.1.15-0.bee b/expect-5.44.1.15-0.bee deleted file mode 100755 index c13b49381..000000000 --- a/expect-5.44.1.15-0.bee +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/env beesh - -PGRP=( programming ) - -SRCURL="http://prdownloads.sourceforge.net/expect/expect-5.44.1.15.tar.bz2" - -#PATCHES[0]="http://www.linuxfromscratch.org/patches/lfs/development/expect-5.44.1.15-no_tk-1.patch" - -#PATCHES[0]="http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-tcl_8.5.8_fix-1.patch" -#PATCHES[1]="http://www.linuxfromscratch.org/patches/blfs/svn/expect-5.43.0-spawn-2.patch" - - -IGNORE_DATAROOTDIR=yes -IGNORE_LOCALEDIR=yes -IGNORE_DOCDIR=yes - -# EXCLUDE="" - -#B=${S} - -mee_configure() { - bee_configure --with-tcl=${LIBDIR} --with-tclinclude=${INCLUDEDIR} -} - -# mee_build() { -# bee_build -# } - -mee_install() { - bee_install - -# ln -sf ../libexpect${PV}.a ${D}${LIBDIR}/expect${PV} -} diff --git a/expect.be0 b/expect.be0 new file mode 100755 index 000000000..c9ed70652 --- /dev/null +++ b/expect.be0 @@ -0,0 +1,25 @@ +#!/bin/env beesh + +# BEE_VERSION expect-5.45-0 + +SRCURL="https://downloads.sourceforge.net/expect/expect${PKGVERSION}.tar.gz" + +# EXCLUDE="" + +#B=${S} + +mee_configure() { + bee_configure --with-tcl=${LIBDIR} --with-tclinclude=${INCLUDEDIR} \ + --enable-shared +} + +# mee_build() { +# bee_build +# } + +mee_install() { + bee_install + + cd ${D} + start_cmd ln -s ${LIBDIR}/expect${PKGVERSION}/libexpect${PKGVERSION}.so ${D}${LIBDIR} +}