Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_2_1_Build_1046 / install / instalador-gvSIG-mac / build-updater.xml @ 20384

History | View | Annotate | Download (946 Bytes)

1
<project name="bundle-gvSIG" default="init" basedir=".">
2
        <property name="NOMBRE_BUNDLE" value="instalador de la extension XXX"/>
3
        <property name="DIR_DESTINO" value="${basedir}"/>
4

    
5
        <target name="init">
6
                <!-- copiamos el bundle actualizador ... -->
7
                <copy todir="${DIR_DESTINO}/${NOMBRE_BUNDLE}.app">
8
                        <fileset dir="actualizador.app"/>
9
                </copy>
10
                <!-- (corregimos permisos de ejecucion que copy se ha cargado) -->
11
                <chmod dir="${DIR_DESTINO}/${NOMBRE_BUNDLE}.app/Contents/MacOS/" type="file" perm="+rwxrxrx"/>
12
                <!-- ...y copiamos cosas a su sitio dentro de autoinstalador
13
                MEJOR HACERLO A MANO?
14
                <copy todir="${NOMBRE_BUNDLE}.app/Contents/Resources/updates">
15
                LO QUE SEA; POR EJEMPLO,
16
                        <fileset dir="../../binaries/mac/" includes="**/*.jar"/>
17
                </copy>
18
                -->
19
                <echo>ATENCION: SOLO SE HA HECHO UNA COPIA DEL ACTUALIZADOR VACIO, Y SE HAN CORREGIDO LOS PERMISOS. ESTAS EN EL PASO 4 DEL HOWTO-UPDATER,EXTS!</echo>
20
        </target>
21

    
22
</project>