diff options
| -rw-r--r-- | meta-extras/packages/zope/zope_3.3.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-extras/packages/zope/zope_3.3.1.bb b/meta-extras/packages/zope/zope_3.3.1.bb new file mode 100644 index 0000000000..4c4664904c --- /dev/null +++ b/meta-extras/packages/zope/zope_3.3.1.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | DESCRIPTION = "A full fledged pluggable content management system with integrated web server and much more." | ||
| 2 | SECTION = "console/network" | ||
| 3 | PRIORITY = "optional" | ||
| 4 | DEPENDS = "python" | ||
| 5 | RDEPENDS = "python-core python-shell" | ||
| 6 | LICENSE = "ZPL" | ||
| 7 | PR = "r1" | ||
| 8 | |||
| 9 | SRC_URI = "http://www.zope.org/Products/Zope3/${PV}/Zope-${PV}.tgz" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/Zope-${PV}" | ||
| 12 | |||
| 13 | do_configure() { | ||
| 14 | ./configure --with-python=${STAGING_BINDIR_NATIVE}/python --prefix=${prefix} --force | ||
| 15 | } | ||
| 16 | |||
| 17 | do_compile() { | ||
| 18 | oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install() { | ||
| 22 | oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | ||
| 23 | } | ||
| 24 | |||
| 25 | PACKAGES =+ "python-zopeinterface" | ||
| 26 | |||
| 27 | FILES_${PN} = "${prefix}" | ||
| 28 | FILES_${PN}_doc = "${prefix}/doc" | ||
| 29 | FILES_python-zopeinterface = "${libdir}/python/zope/interface/*.* ${libdir}/python/zope/interface/common" | ||
