Changeset d6be7ea


Ignore:
Timestamp:
06/11/2006 10:04:36 AM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
6e4e0dd
Parents:
7948a1e
Message:

Added a preliminar version of scripts.xsl.
Updated TODO.

Location:
BLFS
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • BLFS/TODO

    r7948a1e rd6be7ea  
    2020
    21212. - To develop the XSL code needed to create the build scripts.
     22     Work in progress.
    2223
    23 3. - To develop the code to create the Makefile
     243. - To develop the code to create the Makefile.
     25     Should be a separate script to be run manually after the user has
     26     review and edited the target build scripts.
     27     Must make the build scripts executables and set the SRC_ARCHIVE and
     28     FTP_SERVER envars.
    2429
    25304. - To find a way to track already installed packages by previous runs, to can
  • BLFS/libs/func_parser

    r7948a1e rd6be7ea  
    8989    externals:  vars: TARGET
    9090                      BLFS_XML
     91                      MAIL_SERVER
     92                      X11
    9193    modifies:   nothing
    9294    returns:    nothing
     
    117119    sed -i -e "s@text/html@application/xhtml+xml@g" $filename
    118120  done
     121  cd ..
    119122  echo "done"
    120123}
     
    125128#-------------------------#
    126129: <<inline_doc
    127     function:
     130    function:   Create shell scripts of the requested TARGET.
    128131    input vars: nothing
    129     externals:  none
     132    externals:  TARGET
    130133    modifies:   nothing
    131134    returns:    nothing
    132     output:     none
     135    output:     file: NUMEROUS FILES
    133136    on error:   nothing
    134137    on success: nothing
    135138inline_doc
    136139
    137   echo -en  "\tGenerating the build scripts ... not implemented yet, sorry\n"
     140  # Log separator
     141  echo -e "\n\tScripts generation errors:\n" >> xsltproc.log
     142
     143  echo -en  "\tGenerating the build scripts ..."
     144  xsltproc --xinclude --nonet \
     145           -o ./scripts/ ../libs/scripts.xsl \
     146           $TARGET-index.xml >> xsltproc.log 2>&1
     147  echo "done"
    138148}
Note: See TracChangeset for help on using the changeset viewer.