diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-03-23 20:52:55 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-04-05 21:21:51 +0200 |
| commit | d9245d341ed1f258a3dd1073cdfa656115c5b26d (patch) | |
| tree | 17145053f56cd7a3c99377583b8b3a738931422d /build-containers/fedora-rawhide | |
| parent | 462d1458c0058ba9d41d6dc7538f6004b3de3c3e (diff) | |
Adapt rest of packaging to use mesonmeson
Diffstat (limited to 'build-containers/fedora-rawhide')
| -rw-r--r-- | build-containers/fedora-rawhide/Containerfile | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/build-containers/fedora-rawhide/Containerfile b/build-containers/fedora-rawhide/Containerfile index 6869330..3db886c 100644 --- a/build-containers/fedora-rawhide/Containerfile +++ b/build-containers/fedora-rawhide/Containerfile @@ -1,23 +1,15 @@ FROM docker.io/library/fedora:rawhide RUN dnf install -y \ - make \ - clang \ - lld \ - curl \ - tar \ - gzip \ + meson \ + rpm-build \ + cargo \ + rust \ + desktop-file-utils \ + libappstream-glib \ gettext \ gtk4-devel \ libadwaita-devel \ gtksourceview5-devel \ pkg-config \ && dnf clean all - -# Install rust toolchain -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y -ENV PATH="/root/.cargo/bin:${PATH}" - -# Install cargo-generate-rpm -RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \ - && cargo binstall cargo-generate-rpm --no-confirm |