This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Expand file tree Collapse file tree 3 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 2257
2257
"datasourceTemplate" : " gitlab-tags" ,
2258
2258
"depNameTemplate" : " graphviz/graphviz" ,
2259
2259
"fileMatch" : [
2260
- " ^tools/graphwiz /manifest.yaml$"
2260
+ " ^tools/graphviz /manifest.yaml$"
2261
2261
],
2262
2262
"matchStrings" : [
2263
2263
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
Original file line number Diff line number Diff line change @@ -19,13 +19,14 @@ apt-get -y install --no-install-recommends \
19
19
m4 \
20
20
libtool \
21
21
build-essential \
22
- bison
22
+ bison \
23
+ flex
23
24
EOF
24
25
WORKDIR /tmp/graphviz
25
26
RUN <<EOF
26
- git clone -q --config advice.detachedHead=false --depth 1 --branch "${version}" https://gitlab.com/graphviz/graphviz .
27
+ curl --silent --location --fail "https://gitlab.com/graphviz/graphviz/-/archive/${version}/graphviz-${version}.tar.gz" \
28
+ | tar --extract --gzip --strip-components=1
27
29
./autogen.sh
28
- export LDFLAGS=-static
29
30
./configure \
30
31
--prefix="${prefix}${target}" \
31
32
--enable-static=yes \
@@ -57,12 +58,8 @@ export LDFLAGS=-static
57
58
--with-ann=no \
58
59
--with-glade=no \
59
60
--with-qt=no \
60
- --with-x=nomake \
61
- LDFLAGS=-static
62
- #make install
63
- EOF
64
-
65
- # foo
66
- RUN <<EOF
67
- touch "${prefix}${target}/foo"
61
+ --with-x=nomake
62
+ make -j 4
63
+ make install
64
+ mv "${prefix}${target}/bin/dot_static" "${prefix}${target}/bin/dot"
68
65
EOF
Original file line number Diff line number Diff line change 1
- name : graphwiz
1
+ name : graphviz
2
2
version : " 8.0.5"
3
3
check : " "
4
4
platforms :
You can’t perform that action at this time.
0 commit comments