correct copy failure
This commit is contained in:
parent
02952f9b78
commit
283a9bb835
@ -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="pmviewer"
|
# 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]="PlanMakerViewer2010.msi"
|
function create() {
|
||||||
SOURCE[1]="http://internal.graz.disconnected-by-peer.at/Orig/SoftMaker/Viewer/HB/2010/PlanMakerViewer2010.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
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user