-
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.
Added Debian Buster, Debian Bullseye, Fedora 36. (#4)
* add Debian Buster, Debian Bullseye and Fedora 36 packages
- Loading branch information
Showing
9 changed files
with
293 additions
and
17 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,8 @@ | ||
FROM debian:11 | ||
|
||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y gcc\ | ||
g++ clang gfortran cmake git asciidoc texinfo qtmultimedia5-dev\ | ||
libqt5serialport5-dev qttools5-dev qttools5-dev-tools libboost-all-dev\ | ||
libfftw3-dev libreadline-dev libusb-1.0-0-dev libudev-dev portaudio19-dev\ | ||
build-essential binutils lintian debhelper dh-make devscripts | ||
|
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,9 @@ | ||
#!/bin/bash | ||
|
||
tar -xzvf wsjtx-patched-2.5.4.tgz | ||
mkdir build | ||
cd build | ||
cmake -DWSJT_SKIP_MANPAGES=ON -DWSJT_GENERATE_DOCS=OFF ../wsjtx-2.5.4 | ||
cmake --build . --target package -- -j2 | ||
|
||
cp /build/build/wsjtx-prefix/src/wsjtx-build/wsjtx_2.5.4_amd64.deb /build/wsjtx_2.5.4_bullseye_amd64.deb |
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,8 @@ | ||
FROM debian:10 | ||
|
||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y gcc\ | ||
g++ clang gfortran cmake git asciidoc texinfo qtmultimedia5-dev\ | ||
libqt5serialport5-dev qttools5-dev qttools5-dev-tools libboost-all-dev\ | ||
libfftw3-dev libreadline-dev libusb-1.0-0-dev libudev-dev portaudio19-dev\ | ||
build-essential binutils lintian debhelper dh-make devscripts | ||
|
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,9 @@ | ||
#!/bin/bash | ||
|
||
tar -xzvf wsjtx-patched-2.5.4.tgz | ||
mkdir build | ||
cd build | ||
cmake -DWSJT_SKIP_MANPAGES=ON -DWSJT_GENERATE_DOCS=OFF ../wsjtx-2.5.4 | ||
cmake --build . --target package -- -j2 | ||
|
||
cp /build/build/wsjtx-prefix/src/wsjtx-build/wsjtx_2.5.4_amd64.deb /build/wsjtx_2.5.4_buster_amd64.deb |
Oops, something went wrong.