diff options
Diffstat (limited to 'Functions/DEB')
-rw-r--r-- | Functions/DEB | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Functions/DEB b/Functions/DEB new file mode 100644 index 0000000..4c25e37 --- /dev/null +++ b/Functions/DEB @@ -0,0 +1,59 @@ +#!/bin/bash (source) + +# ThirdPartyInstallers DEB backend + +function thirdparty_backend() { + echo "DEB" +} + +function thirdparty_arch() { + false +} + +function thirdparty_distribution() { + false +} + +function thirdparty_dependencies() { + false +} + +function thirdparty_description() { + false +} + +function thirdparty_filenames() { + false +} + +function thirdparty_license() { + false +} + +function thirdparty_name() { + false +} + +function thirdparty_version() { + false +} + +function thirdparty_release() { + false +} + +function thirdparty_summary() { + false +} + +function thirdparty_url() { + false +} + +function thirdparty_search_remotedb() { + false +} + +function thirdparty_uncompress() { + false +} |