Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • demetrius/netrunner
  • despair/netrunner
  • antpy/netrunner
  • dylanbaughercontact/netrunner
  • okn3/netrunner
  • geertiebear/netrunner
  • mechacrash/netrunner
  • vaartis/netrunner
  • flat/netrunner
9 results
Show changes
Showing
with 77 additions and 17 deletions
netrunner.ico

8.65 KiB

// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_ICON1 ICON "netrunner.ico"
IDI_ICON2 ICON "favicon.ico"
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
File deleted
File deleted
File added
File added
File added
......@@ -4,19 +4,20 @@ physicalCpuCount=$([[ $(uname) = 'Darwin' ]] &&
lscpu -p | egrep -v '^#' | sort -u -t, -k 2,4 | wc -l)
mkdir netrunner-$(date +%F)
cd netrunner-$(date +%F)
cp ../*.dylib .
cp ../../../*.ttf .
cp ../../../anime.pnm .
cp ../../../anime_blank.pnm .
cp ../../../ca-bundle.crt .
cp ../*.dylib .
# this now has the ttfs and pnm
cp -r ../../../res .
rm res/.DS_Store
cp ../../../ca-bundle.crt .
cp ../../../browser.ntrml .
cd ../../../
make -j$physicalCpuCount
make -j$physicalCpuCount
cd reltools/darwin/netrunner-$(date +%F)
cp ../../../netrunner .
install_name_tool -change /usr/local/lib/libGLEW.2.0.0.dylib libGLEW.2.0.0.dylib netrunner
install_name_tool -change /usr/local/lib/libfreetype.6.dylib libfreetype.6.dylib netrunner
install_name_tool -change /usr/local/lib/libharfbuzz.0.dylib libharfbuzz.0.dylib netrunner
otool -L netrunner
cp ../../../netrunner .
install_name_tool -change /usr/local/lib/libGLEW.2.0.0.dylib libGLEW.2.0.0.dylib netrunner
install_name_tool -change /usr/local/lib/libfreetype.6.dylib libfreetype.6.dylib netrunner
install_name_tool -change /usr/local/lib/libharfbuzz.0.dylib libharfbuzz.0.dylib netrunner
otool -L netrunner
cd ..
zip -r -X netrunner-$(date +%F)-darwin.zip netrunner-$(date +%F)
rm -fr netrunner-$(date +%F)
......
#!/bin/bash
mkdir netrunner-$(date +%F)
cd netrunner-$(date +%F)
cp ../../../*.ttf .
cp ../../../anime.pnm .
cp ../../../anime_blank.pnm .
# this now has the ttfs and pnm
cp -r ../../../res .
cp ../../../ca-bundle.crt .
curl https://gyroninja.net:1615/job/NetRunner/lastSuccessfulBuild/artifact/netrunner > netrunner
cd ..
......
#!/bin/bash
mkdir netrunner-$(date +%F)
cd netrunner-$(date +%F)
cp ../../../*.ttf .
cp ../../../anime.pnm .
cp ../../../anime_blank.pnm .
# this now has the ttfs and pnm
cp -r ../../../res .
cp ../../../ca-bundle.crt .
cp ../../../browser.ntrml .
cp ../../../netrunner .
cd ..
tar zcf netrunner-$(date +%F)-linux.tar.gz netrunner-$(date +%F)
......
File added
File added
File added
File added
File added
File added
File added
File added
File deleted
File added