aboutsummaryrefslogtreecommitdiff
path: root/Functions/DEB
blob: 4c25e370963e2293b42981fa65446d0d34133206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
}