├── .gitignore ├── Makefile ├── README.md ├── changelog ├── conf ├── binfmts │ └── dbp.binfmt ├── dbp-desktopd-autostart.desktop ├── dbp-run-path.desktop ├── dbp_config.debug.ini ├── dbp_config.ini ├── dbpd-introspection.xml ├── dbpd.service ├── de.dragonbox.PackageDaemon.conf ├── init.d │ └── dbp ├── mime │ └── x-dbp.xml └── thumbnailers │ └── x-dbp.thumbnailer ├── config.mk ├── dbp-cfg ├── Makefile ├── main.c └── main.h ├── dbp-cmd ├── Makefile ├── dbp-cmd.c └── dbp-cmd.h ├── dbp-desktopd ├── Makefile ├── desktopd.c └── desktopd.h ├── dbp-meta ├── Makefile ├── dbp-meta.c └── dbp-meta.h ├── dbp-run ├── Makefile ├── apitest.vala ├── common │ ├── dbp.vapi │ ├── dep-dialog.vala │ ├── error.vala │ ├── exec-line.vala │ └── run.vala ├── dbp-run-path.vala └── dbp-run.vala ├── dbp-thumbnailer ├── Makefile ├── comm.c ├── comm.h ├── thumb_queue.c ├── thumb_queue.h └── thumbnailer.c ├── dbp-validate-extracted ├── Makefile ├── categories.h ├── validate.c └── validate.h ├── dbpd ├── Makefile ├── comm.c ├── comm.h ├── daemon.c ├── daemon.h ├── mountwatch.c ├── mountwatch.h ├── package.c ├── package.h ├── state.c ├── state.h ├── util.c └── util.h ├── libdbpbase ├── Makefile ├── config.c ├── config.h ├── dbp.c ├── dbp.h ├── dbpbase.h ├── desktop.c ├── desktop.h ├── loop.c ├── loop.h ├── meta.c ├── meta.h ├── util.c └── util.h ├── libdbpmgr ├── Makefile ├── dbpd-dbus-client.c ├── dbpd-dbus-client.h ├── dbpmgr.h ├── dependencies.c ├── dependencies.h ├── error.c ├── error.h └── types.h ├── po ├── Makefile └── sv.po ├── scripts ├── dbp-thumbnail ├── dbp_exec └── run_script └── version.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/changelog -------------------------------------------------------------------------------- /conf/binfmts/dbp.binfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/binfmts/dbp.binfmt -------------------------------------------------------------------------------- /conf/dbp-desktopd-autostart.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbp-desktopd-autostart.desktop -------------------------------------------------------------------------------- /conf/dbp-run-path.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbp-run-path.desktop -------------------------------------------------------------------------------- /conf/dbp_config.debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbp_config.debug.ini -------------------------------------------------------------------------------- /conf/dbp_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbp_config.ini -------------------------------------------------------------------------------- /conf/dbpd-introspection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbpd-introspection.xml -------------------------------------------------------------------------------- /conf/dbpd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/dbpd.service -------------------------------------------------------------------------------- /conf/de.dragonbox.PackageDaemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/de.dragonbox.PackageDaemon.conf -------------------------------------------------------------------------------- /conf/init.d/dbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/init.d/dbp -------------------------------------------------------------------------------- /conf/mime/x-dbp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/mime/x-dbp.xml -------------------------------------------------------------------------------- /conf/thumbnailers/x-dbp.thumbnailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/conf/thumbnailers/x-dbp.thumbnailer -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/config.mk -------------------------------------------------------------------------------- /dbp-cfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-cfg/Makefile -------------------------------------------------------------------------------- /dbp-cfg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-cfg/main.c -------------------------------------------------------------------------------- /dbp-cfg/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-cfg/main.h -------------------------------------------------------------------------------- /dbp-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-cmd/Makefile -------------------------------------------------------------------------------- /dbp-cmd/dbp-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-cmd/dbp-cmd.c -------------------------------------------------------------------------------- /dbp-cmd/dbp-cmd.h: -------------------------------------------------------------------------------- 1 | /* Dummy */ 2 | -------------------------------------------------------------------------------- /dbp-desktopd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-desktopd/Makefile -------------------------------------------------------------------------------- /dbp-desktopd/desktopd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-desktopd/desktopd.c -------------------------------------------------------------------------------- /dbp-desktopd/desktopd.h: -------------------------------------------------------------------------------- 1 | /* Dummy */ 2 | -------------------------------------------------------------------------------- /dbp-meta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-meta/Makefile -------------------------------------------------------------------------------- /dbp-meta/dbp-meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-meta/dbp-meta.c -------------------------------------------------------------------------------- /dbp-meta/dbp-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-meta/dbp-meta.h -------------------------------------------------------------------------------- /dbp-run/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/Makefile -------------------------------------------------------------------------------- /dbp-run/apitest.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/apitest.vala -------------------------------------------------------------------------------- /dbp-run/common/dbp.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/common/dbp.vapi -------------------------------------------------------------------------------- /dbp-run/common/dep-dialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/common/dep-dialog.vala -------------------------------------------------------------------------------- /dbp-run/common/error.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/common/error.vala -------------------------------------------------------------------------------- /dbp-run/common/exec-line.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/common/exec-line.vala -------------------------------------------------------------------------------- /dbp-run/common/run.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/common/run.vala -------------------------------------------------------------------------------- /dbp-run/dbp-run-path.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/dbp-run-path.vala -------------------------------------------------------------------------------- /dbp-run/dbp-run.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-run/dbp-run.vala -------------------------------------------------------------------------------- /dbp-thumbnailer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/Makefile -------------------------------------------------------------------------------- /dbp-thumbnailer/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/comm.c -------------------------------------------------------------------------------- /dbp-thumbnailer/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/comm.h -------------------------------------------------------------------------------- /dbp-thumbnailer/thumb_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/thumb_queue.c -------------------------------------------------------------------------------- /dbp-thumbnailer/thumb_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/thumb_queue.h -------------------------------------------------------------------------------- /dbp-thumbnailer/thumbnailer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-thumbnailer/thumbnailer.c -------------------------------------------------------------------------------- /dbp-validate-extracted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-validate-extracted/Makefile -------------------------------------------------------------------------------- /dbp-validate-extracted/categories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-validate-extracted/categories.h -------------------------------------------------------------------------------- /dbp-validate-extracted/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-validate-extracted/validate.c -------------------------------------------------------------------------------- /dbp-validate-extracted/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbp-validate-extracted/validate.h -------------------------------------------------------------------------------- /dbpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/Makefile -------------------------------------------------------------------------------- /dbpd/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/comm.c -------------------------------------------------------------------------------- /dbpd/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/comm.h -------------------------------------------------------------------------------- /dbpd/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/daemon.c -------------------------------------------------------------------------------- /dbpd/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/daemon.h -------------------------------------------------------------------------------- /dbpd/mountwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/mountwatch.c -------------------------------------------------------------------------------- /dbpd/mountwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/mountwatch.h -------------------------------------------------------------------------------- /dbpd/package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/package.c -------------------------------------------------------------------------------- /dbpd/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/package.h -------------------------------------------------------------------------------- /dbpd/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/state.c -------------------------------------------------------------------------------- /dbpd/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/state.h -------------------------------------------------------------------------------- /dbpd/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/util.c -------------------------------------------------------------------------------- /dbpd/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/dbpd/util.h -------------------------------------------------------------------------------- /libdbpbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/Makefile -------------------------------------------------------------------------------- /libdbpbase/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/config.c -------------------------------------------------------------------------------- /libdbpbase/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/config.h -------------------------------------------------------------------------------- /libdbpbase/dbp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/dbp.c -------------------------------------------------------------------------------- /libdbpbase/dbp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/dbp.h -------------------------------------------------------------------------------- /libdbpbase/dbpbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/dbpbase.h -------------------------------------------------------------------------------- /libdbpbase/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/desktop.c -------------------------------------------------------------------------------- /libdbpbase/desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/desktop.h -------------------------------------------------------------------------------- /libdbpbase/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/loop.c -------------------------------------------------------------------------------- /libdbpbase/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/loop.h -------------------------------------------------------------------------------- /libdbpbase/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/meta.c -------------------------------------------------------------------------------- /libdbpbase/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/meta.h -------------------------------------------------------------------------------- /libdbpbase/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/util.c -------------------------------------------------------------------------------- /libdbpbase/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpbase/util.h -------------------------------------------------------------------------------- /libdbpmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/Makefile -------------------------------------------------------------------------------- /libdbpmgr/dbpd-dbus-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/dbpd-dbus-client.c -------------------------------------------------------------------------------- /libdbpmgr/dbpd-dbus-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/dbpd-dbus-client.h -------------------------------------------------------------------------------- /libdbpmgr/dbpmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/dbpmgr.h -------------------------------------------------------------------------------- /libdbpmgr/dependencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/dependencies.c -------------------------------------------------------------------------------- /libdbpmgr/dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/dependencies.h -------------------------------------------------------------------------------- /libdbpmgr/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/error.c -------------------------------------------------------------------------------- /libdbpmgr/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/error.h -------------------------------------------------------------------------------- /libdbpmgr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/libdbpmgr/types.h -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/po/sv.po -------------------------------------------------------------------------------- /scripts/dbp-thumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/scripts/dbp-thumbnail -------------------------------------------------------------------------------- /scripts/dbp_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/scripts/dbp_exec -------------------------------------------------------------------------------- /scripts/run_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaeshjag/dbp/HEAD/scripts/run_script -------------------------------------------------------------------------------- /version.mk: -------------------------------------------------------------------------------- 1 | CFLAGS += -DVERSION=\"0.6.12.1\" 2 | --------------------------------------------------------------------------------