RGB/config.sh

57 lines
2.0 KiB
Bash
Raw Normal View History

2015-02-07 07:09:59 +00:00
# The name of the resulting executables.
packageName="rgb"
# User-friendly package name.
friendlyPackageName="RGB - The Color Chooser"
# Who made this? (Yes, change this to your name.)
author="Guard13007"
# Copyright year (ex 2014-2015 or 2015)
copyrightYear="2015"
# A unique identifier for your package.
# (It should be fine to leave this as its default.)
identifier="com.$author.$packageName"
# Current version (of your program)
2015-02-10 04:40:53 +00:00
version="1.1"
2015-02-07 07:09:59 +00:00
###### Important! ONLY USE ABSOLUATE PATHS ######
# Where to place the resulting executables.
outputDir="$(pwd)/builds"
# Where the source code is. (This should be where your main.lua file is.)
sourceDir="$(pwd)/src"
# Files to include in ZIP packages. (ReadMe's, licenses, etc.)
includes="$(pwd)/includes"
# Where unzipped executables to make packages out of will be kept
# (This is also where LOVE executables will be kept before modifications to make your packages)
win32Dir="$outputDir/win32src"
win64Dir="$outputDir/win64src"
osx10Dir="$outputDir/osx10src"
2015-02-09 18:53:53 +00:00
# Modified love executables (optional)
# (The default values are where the default exe's will be extracted)
win32exe="$outputDir/custom_exes/rgb32.exe"
win64exe="$outputDir/custom_exes/rgb64.exe"
2015-02-09 19:18:41 +00:00
# Mac icns files for package icon
# (It's best to just specify the same file for both.
# I don't think both are needed, but I am not very familiar with the Mac system.)
osxIconsDirectory="$(pwd)/icons"
osxFileIcon="icon.icns"
osxBundleIcon="icon.icns"
2015-02-07 07:09:59 +00:00
# Remove old packages?
removeOld=false
# Allow overwrite? NOT IMPLEMENTED
# If this is false, LovePackaging will quit if you try to build with the same version number twice.
allowOverwrite=false
# Auto-number builds?
# An "-buildN" will be added to the end of ZIP package names, with N being the Nth time this project was built.
# (To do this, a build.number file is stored in $outputDir, so watch out for that.)
autoNumberBuilds=true
# Use curl or wget?
# (One of these lines should be commented out, the other not)
#download="curl -o"
download="wget --progress=bar:force -O"