root/pbibuild/modules/atunes/overlay-dir/PBI.SetupScript.sh

Revision 1920, 0.8 KB (checked in by kris, 8 months ago)

Added two new PBIs to auto-build, atunes and javajdk16.

  • Property svn:executable set to *
Line 
1#!/bin/sh
2# Filename: PBI.SetupScript.sh
3# Place any custom installation code here.
4# This script will be run after your program is extracted into
5# /Programs/<ProgNameVer>/
6# ${1} is the directory name.
7# ${2} is the username of person performing install.
8# TIP: 'kdialog' should be used for user interaction.
9# To interact with the progress dialog echo these flags:
10# echo 'TOTALSTEPS: <num>' # Set the total steps of the progress bar
11# echo 'SETSTEPS: <num>' # Set the current progress of the progress bar
12# echo 'MSG: <text>' # Display this text above progress bar
13#########################################
14
15cd /Programs/${PROGDIR}
16
17ln -s /Programs/${PROGDIR}/.sbin/atunes /usr/local/bin/atunes
18ln -s /Programs/${PROGDIR}/share/atunes /usr/local/share/atunes
19
20
21echo "LAUNCHCLOSE: /usr/local/bin/atunes"
Note: See TracBrowser for help on using the browser.