This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################################################################### | |
## ## | |
## Build and package OpenSSL static libraries for OSX/iOS ## | |
## ## | |
## This script is in the public domain. ## | |
## Creator : Laurent Etiemble ## | |
## ## | |
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Receigen binary | |
RECEIGEN="/Applications/Receigen.app/Contents/MacOS/Receigen" | |
# Extract Info.plist information | |
INPUT="$INFOPLIST_FILE" | |
BUNDLE_ID=`/usr/libexec/PlistBuddy -c "Print CFBundleIdentifier" "$INPUT"` | |
BUNDLE_VERSION=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "$INPUT"` | |
# Expand information if needed | |
EXPANDED_BUNDLE_ID=`eval "echo $BUNDLE_ID"` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Scheme | |
LastUpgradeVersion = "0460" | |
version = "1.3"> | |
<BuildAction | |
parallelizeBuildables = "YES" | |
buildImplicitDependencies = "YES"> | |
<BuildActionEntries> | |
<BuildActionEntry | |
buildForTesting = "YES" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: btsync | |
# Required-Start: $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Should-Start: $network | |
# Should-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Multi-user daemonized version of btsync. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: rtorrent-XXX | |
# Required-Start: $local_fs $remote_fs $portmap | |
# Required-Stop: $local_fs $remote_fs $portmap | |
# Should-Start: $network | |
# Should-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Daemonized version of rtorrent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern "C" { | |
int main_(int argc, const char *argv[]) | |
{ | |
QApplication a(argc, (char**) argv); | |
// Create and show main window here | |
return a.exec(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main_(int argc, const char *argv[]); | |
#define RUNNER (&main_) | |
#import "receigen.h" | |
int main(int argc, char *argv[]) | |
{ | |
return CheckReceiptAndRun(argc, (const char**)argv); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Copyright (c) 2011-2014 Laurent Etiemble (laurent dot etiemble at gmail dot com) | |
# | |
# This script is provided as-is without any warranties. Use it at your own risks. | |
# | |
# Get parameter | |
APP_BUNDLE=$1 |