Private
Public Access
1
0

Add 'gtk/' from commit '7d0dfb455aa86245231b383a92e79b3c08a12d5e'

git-subtree-dir: gtk
git-subtree-mainline: c710c6e053
git-subtree-split: 7d0dfb455a
This commit is contained in:
2025-09-06 19:34:30 -07:00
39 changed files with 3599 additions and 0 deletions

30
gtk/Dockerfile Normal file
View File

@@ -0,0 +1,30 @@
FROM fedora:40
# 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"]