forked from delphix/linux-pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sh
78 lines (71 loc) · 2.03 KB
/
config.sh
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env bash
#
# Copyright 2018 Delphix
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# shellcheck disable=SC2034
#
# This file is a reference config.sh to use when adding a new package.
#
#
# Git URL for where your package is to be found
#
DEFAULT_PACKAGE_GIT_URL="https://example.com/my-package-repository.git"
#
# If you are adding a third-package from an upstream git project, uncomment
# and fill the two lines below.
#
#UPSTREAM_GIT_URL=https://example.com/awesome-third-party-package.git
#UPSTREAM_GIT_BRANCH=master
#
# If you are adding a third-party package based on an existing Ubuntu package,
# find the source package and fill the line below. Hint: the source package
# name is either the same as the package or will appear under "Source:" when
# running "apt show <package>"
#
#UPSTREAM_SOURCE_PACKAGE=awesome-third-party-package
#
# Install build dependencies for the package.
# (Optional function)
#
function prepare() {
#
# Useful helper functions:
#
#logmust install_pkgs build-dep-pkg1 build-dep-pkg2 ...
#logmust install_build_deps_from_control_file
echo 'insert code here'
}
#
# Build the package.
# (Mandatory function)
#
function build() {
#
# This is the default functions to build the package:
#
logmust dpkg_buildpackage_default
}
#
# Hook to fetch upstream package changes and merge into our tree.
# (Optional function, only applies to third-party packages)
#
function update_upstream() {
#
# Useful helper functions:
#
#logmust update_upstream_from_source_package
#logmust update_upstream_from_git
echo 'insert code here'
}