source: versions/3.5.201/Bui_postPackLin/xBuildAllDists.xml @ 11803

Revision 11803, 779 bytes checked in by sam, 4 years ago (diff)

encoding

  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project name="Bui_postPackLin.xBuildAllDists" default="All" basedir=".">
3        <!-- Permet de faire tous les post-packagings pour les différents distribs pour une application donnée (appFolder) -->
4        <property name="appFolder" value="scBuilder"/>
5        <target name="All">
6                <!--
7                        A déclarer ds l'appelant:
8                                - appFolder;
9                                - app.tgz.path;
10                -->
11                <echo message="Bui_postPackLin.xBuildAllDists.${appFolder}"/>
12                <if>
13                        <available file="/usr/bin/dpkg-deb" type="file"/>
14                        <then>
15                                <ant antfile="${basedir}/deb/${appFolder}/build.xml" target="All" inheritall="true"/>
16                        </then>
17                        <else>
18                                <echo message="WARNING Bui_postPackLin : Impossible de produire de deb (commande dpkg-deb manquante)."/>
19                        </else>
20                </if>
21        </target>
22</project>
Note: See TracBrowser for help on using the repository browser.