├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── deb2snap ├── src ├── CMakeLists.txt └── preload.c ├── tests ├── CMakeLists.txt ├── exec.sh └── overlay.sh └── tools ├── copy-deb ├── dbus-daemon ├── dep-tree ├── fixes ├── wrapper.in ├── xmir-run └── xmir2-run /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/README.md -------------------------------------------------------------------------------- /deb2snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/deb2snap -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/src/preload.c -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tests/exec.sh -------------------------------------------------------------------------------- /tests/overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tests/overlay.sh -------------------------------------------------------------------------------- /tools/copy-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/copy-deb -------------------------------------------------------------------------------- /tools/dbus-daemon: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec dbus-daemon --address=unix:path=$(mktemp -u --tmpdir=$SNAP_APP_TMPDIR) $@ 3 | -------------------------------------------------------------------------------- /tools/dep-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/dep-tree -------------------------------------------------------------------------------- /tools/fixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/fixes -------------------------------------------------------------------------------- /tools/wrapper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/wrapper.in -------------------------------------------------------------------------------- /tools/xmir-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/xmir-run -------------------------------------------------------------------------------- /tools/xmir2-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikix/deb2snap/HEAD/tools/xmir2-run --------------------------------------------------------------------------------