|
Revision 2857, 1.1 kB
(checked in by kris, 7 weeks ago)
|
|
Fixed another bug with frozenbubble on amd64
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | # PBI Building template |
|---|
| 3 | # Copyright 2007 PC-BSD Software |
|---|
| 4 | ############################################################################## |
|---|
| 5 | |
|---|
| 6 | # Program Name |
|---|
| 7 | PROGNAME="FrozenBubble" |
|---|
| 8 | |
|---|
| 9 | # Program Website |
|---|
| 10 | PROGWEB="http://www.frozen-bubble.org" |
|---|
| 11 | |
|---|
| 12 | # Program Author |
|---|
| 13 | PROGAUTHOR="The FrozenBubble Team" |
|---|
| 14 | |
|---|
| 15 | # Default Icon (Relative to overlay-dir) |
|---|
| 16 | PROGICON="icons/frozen-bubble-icon-64x64.png" |
|---|
| 17 | |
|---|
| 18 | # Port we want to build |
|---|
| 19 | PBIPORT="/usr/ports/games/frozenbubble" |
|---|
| 20 | |
|---|
| 21 | # Set to "Auto or NONE" to have the PBI creator auto-populate libs or not |
|---|
| 22 | PROGLIBS="Auto" |
|---|
| 23 | |
|---|
| 24 | # PBI Update URL set to "" or the http:// URL of update checker |
|---|
| 25 | PBIUPDATE="http://update.pbidir.com" |
|---|
| 26 | |
|---|
| 27 | # Other Ports we need built (One per line) |
|---|
| 28 | OTHERPORT="" |
|---|
| 29 | |
|---|
| 30 | # Enter your custom make options here |
|---|
| 31 | MAKEOPTS="" |
|---|
| 32 | |
|---|
| 33 | # Build Key - Change this to anything else to trigger a rebuild |
|---|
| 34 | # - The rebuild will take place even if port is still the same ver |
|---|
| 35 | BUILDKEY="03" |
|---|
| 36 | |
|---|
| 37 | # If this port has a non-standard port version variable in Makefile, then |
|---|
| 38 | # list the key here such as "OOOVERSION=" |
|---|
| 39 | VERKEY="" |
|---|
| 40 | |
|---|
| 41 | export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY VERKEY |
|---|