-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
33 lines (28 loc) · 1.65 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<project default="build">
<!-- APPLICATION METADATA -->
<property name="mdpc.name" value="mdvl-syssheet"/>
<property name="mdpc.section" value="utils"/>
<property name="mdpc.descrs" value="System Sheet Script, one-screen system overview"/>
<property name="mdpc.arch" value="all"/>
<property name="mdpc.depends" value="gawk, lsb-release"/>
<property name="mdpc.conflicts" value="mdvl-scripts (<= 1.0.369)"/>
<property name="mdpc.cpyear" value="2012-2020"/>
<property name="mdpc.descrl">
Script `syssheet` displays information about the current system on a single
screen. It is intended to automatically run upon opening a new terminal or
SSH connection as to inform the user about the current state of the system.
</property>
<property name="mdpc.file.install">
syssheet /usr/bin
</property>
<!-- CI INTEGRATION -->
<target name="autoci" depends="autopackage"/>
<!-- CONSTANT TPL IMPORT -->
<property environment="env"/>
<condition property="masysma.internal.includepath.rel" value="${env.MDVL_CI_PHOENIX_ROOT}" else=".."><isset property="env.MDVL_CI_PHOENIX_ROOT"/></condition>
<property name="masysma.internal.includepath" location="${masysma.internal.includepath.rel}"/>
<property name="masysma.internal.loadpath" value="${masysma.internal.includepath}/co-build/ant-build-template.xml"/>
<condition property="masysma.internal.load" value="file://${masysma.internal.loadpath}" else="https://raw.githubusercontent.com/m7a/co-build/master/ant-build-template.xml"><resourceexists><file file="${masysma.internal.loadpath}"/></resourceexists></condition>
<import><url url="${masysma.internal.load}"/></import>
</project>