Statistics
| Revision:

root / branches / v10 / install / instalador-gvSIG-mac / build-updater.xml @ 20952

History | View | Annotate | Download (946 Bytes)

1 12501 mija
<project name="bundle-gvSIG" default="init" basedir=".">
2
        <property name="NOMBRE_BUNDLE" value="instalador de la extension XXX"/>
3 17060 jmvivo
        <property name="DIR_DESTINO" value="${basedir}"/>
4 12501 mija
5
        <target name="init">
6
                <!-- copiamos el bundle actualizador ... -->
7 17060 jmvivo
                <copy todir="${DIR_DESTINO}/${NOMBRE_BUNDLE}.app">
8 12501 mija
                        <fileset dir="actualizador.app"/>
9
                </copy>
10
                <!-- (corregimos permisos de ejecucion que copy se ha cargado) -->
11 17060 jmvivo
                <chmod dir="${DIR_DESTINO}/${NOMBRE_BUNDLE}.app/Contents/MacOS/" type="file" perm="+rwxrxrx"/>
12
                <!-- ...y copiamos cosas a su sitio dentro de autoinstalador
13 16940 mijail
                MEJOR HACERLO A MANO?
14 12501 mija
                <copy todir="${NOMBRE_BUNDLE}.app/Contents/Resources/updates">
15 17060 jmvivo
                LO QUE SEA; POR EJEMPLO,
16 12501 mija
                        <fileset dir="../../binaries/mac/" includes="**/*.jar"/>
17
                </copy>
18 16940 mijail
                -->
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 12501 mija
        </target>
21
22
</project>