forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix document generation on fedora (GPSBabel#949)
* try to find common docbook url for fedora/ubuntu/homebrew catalogs. * fedora builds jing is broken on f32, remove it so it doesn't kill our document build. add f37, with Qt5 because fedora doesn't have Qt6 webengine yet.
- Loading branch information
Showing
5 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# this file is used to build the image gpsbabel_build_environment used by travis. | ||
|
||
FROM fedora:37 | ||
|
||
LABEL maintainer="https://github.com/tsteven4" | ||
|
||
WORKDIR /app | ||
|
||
# basic tools to build | ||
RUN dnf install --assumeyes git make valgrind diffutils findutils langpacks-en ninja-build && \ | ||
dnf clean all | ||
# libraries used by gpsbabel. zlib and shapelib may or may not be used depending qmake options. | ||
RUN dnf install --assumeyes libusb1-devel zlib-devel shapelib-devel && \ | ||
dnf clean all | ||
# Qt used by gpsbabel, gpsbabelfe | ||
RUN dnf install --assumeyes qt5-qtbase-devel qt5-qtserialport-devel qt5-qtwebengine-devel qt5-linguist qt5-qttranslations && \ | ||
dnf clean all | ||
# tools to build the docs | ||
RUN dnf install --assumeyes expat desktop-file-utils libxslt docbook-style-xsl fop docbook5-style-xsl docbook5-schemas && \ | ||
dnf clean all | ||
# create a link as fedora uses the name qmake-qt5 for Qt5's qmake. | ||
RUN alternatives --install /usr/bin/qmake qt /usr/lib64/qt5/bin/qmake 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters