summaryrefslogtreecommitdiffstats
path: root/Tools/make_readmes
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/make_readmes')
-rw-r--r--Tools/make_readmes20
1 files changed, 10 insertions, 10 deletions
diff --git a/Tools/make_readmes b/Tools/make_readmes
index 089bc99..c6e78e6 100644
--- a/Tools/make_readmes
+++ b/Tools/make_readmes
@@ -6,16 +6,16 @@ $TEMPLATES=$ENV{TEMPLATES} || "${PORTSDIR}/Templates";
$README=`cat ${TEMPLATES}/README.port`;
while(<>) {
- split '\|';
-
- $PKG=$_[0];
- $PORT=$_[1];
- $COMMENT=$_[3];
- $DESCR=$_[4];
- $EMAIL=$_[5];
- $BUILD_DEPENDS=$_[7];
- $RUN_DEPENDS=$_[8];
- $WEBSITE=$_[9];
+ (@F)=split(/\|/, $_);
+ $PKG=$F[0];
+ $PORT=$F[1];
+ $COMMENT=$F[3];
+ $DESCR=$F[4];
+ $EMAIL=$F[5];
+ $BUILD_DEPENDS=$F[7];
+ $RUN_DEPENDS=$F[8];
+ $WEBSITE=$F[9];
+
$DESCR=~s|^\Q$PORT/\E||;
$PORT=~s|`pwd`||;
OpenPOWER on IntegriCloud