diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2006-08-24 17:52:10 +0000 |
---|---|---|
committer | Philipp Zabel <philipp.zabel@gmail.com> | 2006-08-24 17:52:10 +0000 |
commit | c6989b6d392d9dd286cc4f4bdee36348625e36cb (patch) | |
tree | d264dc3a89babc0c2997876f5c2506085968abde /packages/swig | |
parent | cbde22d8f4de3ef6c20d2db069a29d6d70dd2392 (diff) |
swig-1.3.29: add missing recipe that bitbake complains about
Diffstat (limited to 'packages/swig')
-rw-r--r-- | packages/swig/swig_1.3.29.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/swig/swig_1.3.29.bb b/packages/swig/swig_1.3.29.bb new file mode 100644 index 0000000000..a36c7b9934 --- /dev/null +++ b/packages/swig/swig_1.3.29.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "SWIG - Simplified Wrapper and Interface Generator" +HOMEPAGE = "http://swig.sourceforge.net/" +LICENSE = "BSD" +SECTION = "devel" + +SRC_URI = "${SOURCEFORGE_MIRROR}/swig/swig-${PV}.tar.gz" +S = "${WORKDIR}/swig-${PV}" + +inherit autotools + +EXTRA_OECONF = "--with-python=${STAGING_BINDIR} --with-swiglibdir=${STAGING_DIR}/${BUILD_SYS}/swig" + +do_configure() { + oe_runconf +} + |