-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from juraph-dev/deps_bump
Deps bump. Add a few scripts.
- Loading branch information
Showing
5 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env sh | ||
docker build -t ornis_docker . |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env sh | ||
|
||
docker container stop ornis_docker | ||
docker container rm ornis_docker | ||
docker run --network=host --ipc=host --pid=host --privileged --ulimit nofile=1024:2056 --env="DISPLAY" -it -v /dev/shm:/dev/shm -v ~/ros2_ws/ornis_ws:/home/ornis/ornis_ws:Z --name ornis_docker ornis_docker |
Submodule notcurses
updated
19 files
+6 −1 | .drone.yml | |
+24 −19 | CMakeLists.txt | |
+2 −2 | COPYRIGHT | |
+1 −0 | README.md | |
+1 −1 | TERMINALS.md | |
+12 −2 | USAGE.md | |
+2 −2 | doc/man/man3/notcurses_capabilities.3.md | |
+2 −1 | doc/release-checklist.md | |
+1 −1 | include/ncpp/Plane.hh | |
+8 −10 | include/notcurses/notcurses.h | |
+2 −2 | src/demo/animate.c | |
+5 −1 | src/demo/fission.c | |
+4 −3 | src/lib/internal.h | |
+63 −30 | src/lib/notcurses.c | |
+3 −1 | src/lib/sixel.c | |
+4 −6 | src/lib/tabbed.c | |
+1 −1 | src/lib/termdesc.c | |
+1 −2 | src/man/main.c | |
+14 −6 | src/media/ffmpeg.c |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ -z "$PREFIX" ]]; then | ||
PREFIX="/usr/local" | ||
# $var is empty, do what you want | ||
fi | ||
|
||
|
||
echo "Installing ornis to $PREFIX/bin" | ||
|
||
cd "$(dirname "$0")" | ||
|
||
if ./compile.sh ; then | ||
echo "Copying file" | ||
sudo cp ../../build/ornis/ornis $PREFIX/bin | ||
fi | ||
echo "Installation complete!" |