|
Revision 1006, 0.7 kB
(checked in by gonzalo, 9 months ago)
|
|
kmenu entry fixed and added remove script
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # PBI building script |
|---|
| 3 | # This will run after your port build is complete |
|---|
| 4 | # Build your PBI here, and exit 0 on success, or exit 1 on failure. |
|---|
| 5 | ############################################################################## |
|---|
| 6 | # Available Variables |
|---|
| 7 | # PBIDIR = The location of where you can populate your PBI directory |
|---|
| 8 | # MODULEDIR = The location of the module directory for this PBI |
|---|
| 9 | # PORTVER = Version number of the port we used to build |
|---|
| 10 | ############################################################################## |
|---|
| 11 | # Save the right version number in the removepbi.sh script |
|---|
| 12 | sed -e "s,CHANGEME,Gambas${PORTVER},g" ${PBIDIR}/scripts/removepbi.sh > /tmp/removepbi.sh |
|---|
| 13 | mv /tmp/removepbi.sh ${PBIDIR}/scripts/removepbi.sh |
|---|
| 14 | chmod 755 ${PBIDIR}/scripts/removepbi.sh |
|---|