Update package version to 14.0.2

This commit is contained in:
2025-10-23 19:23:50 +03:00
parent b244a7e909
commit a6ebe285d9
2 changed files with 5 additions and 10 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
name: graphviz name: graphviz
description: Open source graph visualization software description: Open source graph visualization software
version: 14.0.1 version: 14.0.2
revision: 1 revision: 1
url: https://www.graphviz.org/ url: https://www.graphviz.org/
license: EPL-1.0 license: EPL-1.0
@@ -33,4 +33,4 @@ downloads:
- url: https://gitlab.com/graphviz/graphviz/-/archive/${BPM_PKG_VERSION}/graphviz-${BPM_PKG_VERSION}.tar.gz - url: https://gitlab.com/graphviz/graphviz/-/archive/${BPM_PKG_VERSION}/graphviz-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: a969b754ecd9e25cc93b2d299cc03f573ff65c5d3595350fa22678c028b8de52 checksum: 1c59acc6415b5baf5e39183e784397fd95a822d39516e1cfe261c846a87ddbe6
+3 -8
View File
@@ -5,19 +5,14 @@
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
mkdir build cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_INSTALL_RPATH=ON
cd build cmake --build build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_INSTALL_RPATH=ON ..
cmake --build .
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
cd build DESTDIR="$BPM_OUTPUT" cmake --install build
DESTDIR="$BPM_OUTPUT" cmake --install .
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/graphviz/LICENSE install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/graphviz/LICENSE
} }