correct a copy problem

This commit is contained in:
Mario Fetka 2012-01-28 22:36:01 +01:00
parent 42f4fb868e
commit be5fc8374b
1 changed files with 53 additions and 26 deletions

View File

@ -1,33 +1,60 @@
############################ ##############################################################################
# Setup product information # This optional file "builder-targets-cb.sh" will be called by builder.sh
############################ #
VENDOR="softmaker.de" # The targets will be called from thde opsi-builder using the following
PN="tmviewer" # order: config, prepare, retrieve, create, package, publish, commit, cleanup
VERSION="2010" # You can overwrite the target functions in builder-targets-cb.sh
RELEASE="10" #
PRIORITY="0" # You can define callback functions. The functions are called from
ADVICE="" # opsi-builder within processing a target
# cb_package_makeproductfile
#
# You can use every variable defined in any configuration file or by
# the defined builder script itself. Also, calling the predefined
# targets builder_<targetname> is possible.
#
# Abstract:
# target order: config, prepare, retrieve, create, package, publish, commit, cleanup
# callbacks: <none>
#
##############################################################################
TYPE="restrict" #function config() {
# echo "Config - doing some commands before calling the builder_config"
# builder_config
# echo "Config - doing some commands after calling the builder_config"
#}
##################### #function prepare() {
# File object array # echo "Prepare"
##################### # builder_prepare
#}
FILE[0]="SoftMaker-Logo.png_medium.png" function retrieve() {
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" echo "Retrieve"
builder_retrieve
}
FILE[1]="TextMakerViewer2010.msi" function create() {
SOURCE[1]="http://internal.graz.disconnected-by-peer.at/Orig/SoftMaker/Viewer/HB/2010/TextMakerViewer2010.msi" echo "Create"
ARCH[1]="X86" builder_create
WINST[1]="InstallMsi" }
# Download direct the executable function package() {
#FILE[1]="TMViewerSetup.exe" echo "Package"
#SOURCE[1]="http://www.softmaker.net/down/TMViewerSetup.exe" builder_package
#ARCH[1]="X86" }
#WINST[1]="InstallExe"
# File array index for the image showing while installing the program function publish() {
ICON_FILE_INDEX=0 echo "Publish"
builder_publish
}
function commit() {
echo "Commit"
# builder_commit
}
function cleanup() {
echo "Cleanup: output_dir: $output_dir"
# builder_cleanup
}