Convert builder-product.cfg to new devtools API

This commit is contained in:
Daniel Schwager 2012-01-30 23:17:24 +01:00
parent a691eb99df
commit c767923dad
2 changed files with 19 additions and 14 deletions

View File

@ -14,20 +14,21 @@ TYPE="restrict"
# File object array # File object array
##################### #####################
FILE[0]="SoftMaker-Logo.png_medium.png"
SOURCE[0]="http://www.android-user.de/var/ezflow_site/storage/images/artikel/exklusiv-vorschau-auf-softmaker-office-fuer-android/softmaker-logo.png/25888-1-ger-DE/SoftMaker-Logo.png_medium.png"
FILE[1]="TextMakerViewer2010.msi" DL_FILE[0]="SoftMaker-Logo.png_medium.png"
SOURCE[1]="http://internal.graz.disconnected-by-peer.at/Orig/SoftMaker/Viewer/HB/2010/TextMakerViewer2010.msi" DL_SOURCE[0]="http://www.android-user.de/var/ezflow_site/storage/images/artikel/exklusiv-vorschau-auf-softmaker-office-fuer-android/softmaker-logo.png/25888-1-ger-DE/SoftMaker-Logo.png_medium.png"
ARCH[1]="X86"
WINST[1]="InstallMsi" DL_FILE[1]="TextMakerViewer2010.msi"
DL_SOURCE[1]="http://internal.graz.disconnected-by-peer.at/Orig/SoftMaker/Viewer/HB/2010/TextMakerViewer2010.msi"
DL_ARCH[1]="X86"
DL_WINST_NAME[1]="InstallMsi"
# Download direct the executable # Download direct the executable
#FILE[1]="TMViewerSetup.exe" #DL_FILE[1]="TMViewerSetup.exe"
#SOURCE[1]="http://www.softmaker.net/down/TMViewerSetup.exe" #DL_SOURCE[1]="http://www.softmaker.net/down/TMViewerSetup.exe"
#ARCH[1]="X86" #DL_ARCH[1]="X86"
#WINST[1]="InstallExe" #DL_WINST_NAME[1]="InstallExe"
# File array index for the image showing while installing the program # File array index for the image showing while installing the program
ICON_FILE_INDEX=0 ICON_DL_INDEX=0

View File

@ -52,9 +52,13 @@ function publish() {
function commit() { function commit() {
echo "Commit" echo "Commit"
# builder_commit builder_commit
} }
function cleanup() { function cleanup() {
echo "Cleanup: output_dir: $output_dir" echo "Cleanup: output_dir: $OUTPUT_DIR"
# builder_cleanup # cp -a ${OUTPUT_DIR}/${OPSI_REPOS_FILE_PATTERN}.opsi /tmp/tmviewer.opsi
# chmod 666 /tmp/tmviewer.opsi
# ls -altr /tmp/tmviewer.opsi
builder_cleanup
} }