Private
Public Access
1
0

Fixes rpm build

This commit is contained in:
2025-08-08 13:47:21 -07:00
parent 5fa6c86a17
commit 54b76109c2
3 changed files with 34 additions and 3 deletions

30
Dockerfile Normal file
View File

@@ -0,0 +1,30 @@
FROM fedora:39
# Install RPM build tools and dependencies
RUN dnf update -y && dnf install -y \
rpm-build \
rpmdevtools \
meson \
vala \
gcc \
pkgconfig \
gtk4-devel \
libadwaita-devel \
glib2-devel \
libgee-devel \
libsecret-devel \
ImageMagick \
git \
&& dnf clean all
# Create RPM build environment
RUN rpmdev-setuptree
# Set working directory
WORKDIR /root/rpmbuild
# Copy spec file
COPY dist/rpm/kordophone.spec SPECS/
# Build command
CMD ["rpmbuild", "-ba", "SPECS/kordophone.spec"]