diff options
Diffstat (limited to 'recipes/wt/wt_2.2.3.bb')
-rw-r--r-- | recipes/wt/wt_2.2.3.bb | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/recipes/wt/wt_2.2.3.bb b/recipes/wt/wt_2.2.3.bb index 49fad6de91..573cce5f6a 100644 --- a/recipes/wt/wt_2.2.3.bb +++ b/recipes/wt/wt_2.2.3.bb @@ -4,7 +4,7 @@ SECTION = "devel" LICENSE = "GPL" HOMEPAGE = "http://www.webtoolkit.eu/wt" DEPENDS = "boost zlib openssl" -PR = "r1" +PR = "r2" SRC_URI = "${SOURCEFORGE_MIRROR}/witty/wt-${PV}.tar.gz \ file://cmakelist.patch;patch=1" @@ -21,14 +21,3 @@ STAGE_TEMP = "${WORKDIR}/temp-staging" do_configure_append() { ${BUILD_CXX} ${BUILD_CXXFLAGS} -o src/filetostring src/web/skeleton/FileToString.C } - -do_stage() { - rm -rf ${STAGE_TEMP} - mkdir -p ${STAGE_TEMP} - oe_runmake DESTDIR="${STAGE_TEMP}" install - cp -pPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR} - cp -pPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR} - cp -pPR ${STAGE_TEMP}/${datadir}/cmake-2.* ${STAGING_DATADIR} - rm -rf ${STAGE_TEMP} -} - |