source: XSL/blfs-tool.xsl@ bfcaaa0

experimental
Last change on this file since bfcaaa0 was bfcaaa0, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Moved custom-tools and blfs-tool templates to saparate files.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[bfcaaa0]1<?xml version="1.0"?>
2
3<!-- $Id$ -->
4
5<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6 xmlns:exsl="http://exslt.org/common"
7 extension-element-prefixes="exsl"
8 version="1.0">
9
10
11 <!-- Create blfs-tool dependencies scripts -->
12 <xsl:template name="blfs-tool">
13 <!-- Fixed directory and ch_order values -->
14 <xsl:variable name="basedir">blfs-tool-deps/30_</xsl:variable>
15 <!-- One exsl:document block for each blfs-tool dependency
16 TO BE WRITTEN -->
17 <exsl:document href="{$basedir}01-dummy" method="text">
18 <xsl:call-template name="header"/>
19 <xsl:text>
20PKG_PHASE=dummy
21PACKAGE=dummy
22VERSION=0.0.0
23TARBALL=dummy-0.0.0.tar.bz2
24 </xsl:text>
25 <xsl:call-template name="disk_usage"/>
26 <xsl:call-template name="unpack"/>
27 <xsl:text>
28cd $PKGDIR
29./configure --prefix=/usr
30make
31make check
32make install
33 </xsl:text>
34 <xsl:call-template name="disk_usage"/>
35 <xsl:call-template name="clean_sources"/>
36 <xsl:call-template name="footer"/>
37 </exsl:document>
38 </xsl:template>
39
40</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.