Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,6 @@
[Desktop Entry]
Type=Application
Name=Bowler Studio
Exec=/usr/bin/bowlerstudio
Categories=Application;Development;Programming;3DGraphics;Education;Network;WebBrowser;
Icon=/usr/share/themes/base/neuronrobotics/icons/NeuronRobotics.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,10 @@
#!/bin/bash
NRDIR=/usr/share/bowlerstudio/
JAR=BowlerStudio.jar
if (test -d $NRDIR)then
java -jar $NRDIR$JAR "$@"
else
zenity --error --text="#ERROR: $JAR is not where i expect it to be, $NRDIR"
fi

View File

@@ -0,0 +1,13 @@
Source: bowlerstudio
Package: bowlerstudio
Priority: extra
Maintainer: Customer Support <mad.hephaestus@gmail.com>
Architecture: all
Version: BOWLERVERSION
Depends: oracle-java8-set-default,libopencv2.4-java,libopencv2.4-jni,slic3r,jarwrapper,arduino
Provides: bowlerstudio
Conflicts: modemmanager,nr-rdk-java
Replaces: modemmanager,nr-rdk-java
Description: Robotics Development Engironment and runtime.
A scripting platform for writing, designing, simulating
and manufacturing robots.

View File

@@ -0,0 +1,12 @@
#! /bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
export OPENCV_DIR=$DIR/opencv249build/
echo Setting OPENCV_DIR = ${OPENCV_DIR}
if (java -jar "$DIR/JavaVersionCheck.jar" 8 45) ; then
java -jar "$DIR/bin/BowlerStudio.jar"
else
echo "Update Java and try again"
fi

View File

@@ -0,0 +1,12 @@
#! /bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
export OPENCV_DIR=$DIR/opencv249build/
echo Setting OPENCV_DIR = ${OPENCV_DIR}
if (java -jar "$DIR/JavaVersionCheck.jar" 8 45) ; then
java -jar "$DIR/bin/BowlerStudio.jar" -r "$@"
else
echo "Update Java and try again"
fi