From f726af2696d981bec35c294dea30db1017863042 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 11 Jul 2011 19:03:27 +0000 Subject: [PATCH] Fix the pe bep to install documentation. (Although it seems web+ doesn't handle the message from the app properly and just opens a blank page) --- haiku-apps/pe/pe-2.4.3-600.bep | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/haiku-apps/pe/pe-2.4.3-600.bep b/haiku-apps/pe/pe-2.4.3-600.bep index 0371a7165..bc857b363 100644 --- a/haiku-apps/pe/pe-2.4.3-600.bep +++ b/haiku-apps/pe/pe-2.4.3-600.bep @@ -11,16 +11,14 @@ BUILD { } INSTALL { - cd pe-2.4.3-600/generated - if [ -d distro ];then - mv -f distro Pe - fi + cd pe-2.4.3-600 mkdir -p ${DESTDIR}/boot/apps - cp -a Pe ${DESTDIR}/boot/apps - rm -f ${DESTDIR}/boot/apps/Pe/.OptionalPackageDescription - if [ -z ${DESTDIR} ];then - find /boot/apps/Pe -type d -name ".svn" | xargs rm -rf - fi + cp -a generated/distro ${DESTDIR}/boot/apps/Pe + cp -a doc ${DESTDIR}/boot/apps/Pe/Documentation + rm -f ${DESTDIR}/boot/apps/Pe/.OptionalPackageDescription + if [ -z "${DESTDIR}" ];then + find /boot/apps/Pe -type d -name ".svn" | xargs rm -rf + fi } LICENSE="BSD (4-clause) MIT"