Skip to content

Commit e122341

Browse files
author
Jason Kridner
committed
Revert "app: release 0.0.1"
This reverts commit bcca776.
1 parent bcca776 commit e122341

File tree

7 files changed

+76
-0
lines changed

7 files changed

+76
-0
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

app/build.sh

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/sh
2+
set -x
3+
set -e
4+
ZIP=/tmp/$(basename $0).$RANDOM.zip
5+
cd $(dirname $0)/..
6+
DIR=`pwd`
7+
8+
cd $DIR
9+
zip $ZIP -r autorun.inf Docs Drivers info.txt LICENSE.txt START.htm
10+
11+
# Add package.json
12+
cd $DIR/app
13+
zip $ZIP -r package.json
14+
15+
# Make Mac app
16+
rm -f $DIR/app/MacOSX/beaglebone-getting-started.app.zip
17+
cp $ZIP $DIR/app/MacOSX/beaglebone-getting-started.app/Contents/Resources/app.nw
18+
19+
# Make Linux 32-bit app
20+
cat $DIR/app/Linux/nw $ZIP > $DIR/app/Linux/beaglebone-getting-started
21+
chmod +x $DIR/app/Linux/beaglebone-getting-started
22+
23+
# Make Windows .exe
24+
cat $DIR/app/Windows/nw.exe $ZIP > $DIR/app/Windows/beaglebone-getting-started.exe
25+
26+
# Clean-up
27+
rm -f $ZIP

app/cleanup-for-release.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
set -x
3+
set -e
4+
cd $(dirname $0)/..
5+
DIR=`pwd`
6+
7+
rm $DIR/app/Linux/nw
8+
rm $DIR/app/Windows/nw.exe

app/cleanup-for-version-control.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
set -x
3+
set -e
4+
cd $(dirname $0)/..
5+
DIR=`pwd`
6+
7+
rm $DIR/app/Linux/beaglebone-getting-started
8+
rm $DIR/app/MacOSX/beaglebone-gettig-started.app/Contents/Resources/app.nw
9+
rm $DIR/app/Windows/beaglebone-getting-started.exe

app/package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "beaglebone-getting-started"
3+
, "version": "0.0.1"
4+
, "main": "START.htm"
5+
, "description": "BeagleBone Getting Started App"
6+
, "keywords": [ "beaglebone", "linux", "node-webkit" ]
7+
, "window": {
8+
"toolbar": true
9+
, "icon": "Docs/beagle.png"
10+
, "width": 1024
11+
, "height": 600
12+
}
13+
, "webkit": {
14+
"plugin": true
15+
}
16+
, "maintainers": [
17+
{
18+
"name": "Jason Kridner"
19+
, "email": "[email protected]"
20+
, "web": "http://beagleboard.org/about"
21+
}
22+
]
23+
, "repositories": [
24+
{
25+
"type": "git"
26+
, "url": "http://github.com/jadonk/beaglebone-getting-started.git"
27+
, "path": ""
28+
}
29+
]
30+
, "dependencies": {
31+
}
32+
}

0 commit comments

Comments
 (0)