From 2b2fc42bd0870e18fb5e5ab56e8513f7cbd46612 Mon Sep 17 00:00:00 2001 From: "Lucas C. Villa Real" Date: Mon, 2 Jan 2017 19:21:32 -0200 Subject: Move RPM specific function to Functions/RPM. This move is to ease the implementation of a DEB backend. --- Functions/DEB | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Functions/DEB (limited to 'Functions/DEB') 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 +} -- cgit v1.1