File tree Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 40
40
RUN <<EOF
41
41
export CFLAGS="${CFLAGS} -static"
42
42
make configure
43
- ./configure --prefix="${prefix}"
43
+ ./configure \
44
+ --prefix="/usr/local" \
45
+ --sysconfdir="/etc"
44
46
make -j$(nproc) all
45
47
make -j$(nproc) doc
46
- make install install-doc install-html
48
+ make install install-doc install-html DESTDIR="${prefix}"
47
49
EOF
48
50
RUN <<EOF
49
51
make -C contrib/subtree
50
- make -C contrib/subtree install
52
+ make -C contrib/subtree install DESTDIR="${prefix}"
51
53
52
54
make -C contrib/diff-highlight
53
55
install -Dm755 contrib/diff-highlight/diff-highlight -t "${prefix}/bin/"
54
56
55
- #make -C contrib/credential/libsecret
56
- #install -Dm755 contrib/credential/libsecret/git-credential-libsecret "${prefix}/libexec/git-core/"
57
-
58
- install -Dm644 contrib/completion/git-completion.bash "${prefix}/usr/share/bash-completion/completions/git"
57
+ install -Dm644 contrib/completion/git-completion.bash "${prefix}/share/bash-completion/completions/git"
59
58
install -Dm644 contrib/completion/git-prompt.sh "${prefix}/share/git-core/git-prompt.sh"
59
+ EOF
60
+ WORKDIR /uniget_bootstrap
61
+ RUN <<EOF
62
+ cp -r usr/local/* .
63
+ rm -rf usr/local
60
64
EOF
Original file line number Diff line number Diff line change 16
16
homepage : https://git-scm.com/
17
17
repository : https://github.com/git/git
18
18
description : Distributed version control system
19
+ messages :
20
+ internals : |
21
+ git has multiple paths compiled in:
22
+ - GIT_EXEC_PATH defaults to /usr/local/libexec/git-core
23
+ - GIT_TEMPLATE_DIR defaults to /usr/local/share/git-core/templates
24
+ - Global configuration files are expected to live in /etc/git{attributes,config}
25
+
26
+ You con override them by setting the approprivate environment variables. Please refer to the official documentation: https://git-scm.com/docs
19
27
renovate :
20
28
datasource : github-tags
21
29
package : git/git
You can’t perform that action at this time.
0 commit comments