aboutsummaryrefslogtreecommitdiff
path: root/Functions/DEB
diff options
context:
space:
mode:
authorLucas C. Villa Real <lucasvr@gmail.com>2017-01-02 19:21:32 -0200
committerLucas C. Villa Real <lucasvr@gmail.com>2017-01-02 19:21:32 -0200
commit2b2fc42bd0870e18fb5e5ab56e8513f7cbd46612 (patch)
tree7394342d04e60a9ea92a0da0ccbb795eaa5474a3 /Functions/DEB
parent3c3479fb0fb0f4ce71c641897b678a7d412b07cc (diff)
downloadThirdPartyInstallers-2b2fc42bd0870e18fb5e5ab56e8513f7cbd46612.tar.xz
Move RPM specific function to Functions/RPM. This move is to ease the
implementation of a DEB backend.
Diffstat (limited to 'Functions/DEB')
-rw-r--r--Functions/DEB59
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
+}