Migrated to new opsi-builder

This commit is contained in:
Daniel Schwager 2012-01-27 19:56:01 +01:00
parent 3f800f5b24
commit 7bfc5ead85
3 changed files with 58 additions and 0 deletions

4
ReadMe.txt Normal file
View File

@ -0,0 +1,4 @@
Note:
- MSI was created manually (by mario)

36
builder-product.cfg Normal file
View File

@ -0,0 +1,36 @@
############################
# Setup product information
############################
VENDOR="softmaker.de"
PN="tmviewer"
VERSION="2010"
RELEASE="10"
PRIORITY="0"
ADVICE=""
TYPE="public"
STATUS="testing"
#####################
# 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"
WINST[0]=IconFile
#FILE[1]="TextMakerViewer2010.msi"
#SOURCE[1]="http://internal.graz.disconnected-by-peer.at/Orig/SoftMaker/Viewer/HB/2010/TextMakerViewer2010.msi"
#ARCH[1]="X86"
#WINST[1]="InstallMsi"
FILE[1]="TMViewerSetup.exe"
SOURCE[1]="http://www.softmaker.net/down/TMViewerSetup.exe"
ARCH[1]="X86"
WINST[1]="InstallExe"
# File array index for the image showing while installing the program
ICON_FILE_INDEX=0

18
builder-targets-cb.sh Normal file
View File

@ -0,0 +1,18 @@
##############################################################################
# This optional file "builder-targets-cb.sh" will be called by builder.sh
#
# target order: config, prepare, retrieve, create, package, publish, commit, cleanup
# callbacks: cb_package_makeproductfile
#
##############################################################################
function create() {
echo "Create"
builder_create
}
function cleanup() {
echo "Cleanup: output_dir: $output_dir"
# builder_cleanup
}